1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/openapi/components/schemas/client_gateway_token.yaml
2024-03-07 21:48:19 +11:00

27 lines
832 B
YAML

ClientGatewayToken:
properties:
id:
description: 'The hashed id of the client gateway token'
type: string
example: Opnel5aKBz
client_id:
description: 'The hashed_id of the client'
type: string
example: '2'
token:
description: 'The payment token'
type: string
example: '2'
routing_number:
description: 'THe bank account routing number'
type: string
example: '2'
company_gateway_id:
description: 'The hashed id of the company gateway'
type: string
example: '2'
is_default:
description: 'Flag determining if the token is the default payment method'
type: boolean
example: 'true'
type: object