1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 01:11:34 +02:00
invoiceninja/openapi/components/schemas/client_gateway_token.yaml

31 lines
952 B
YAML
Raw Normal View History

2023-03-19 00:39:21 +01:00
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