1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/openapi/components/schemas/client_gateway_token.yaml
2023-03-19 10:39:21 +11:00

31 lines
952 B
YAML

ClientGatewayToken:
properties:
id:
description: 'The hashed id of the client gateway token'
type: string
example: Opnel5aKBz
company_id:
description: 'The hashed id of the company'
type: string
example: '2'
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