Properties
| Name | Type | Description |
|---|---|---|
| receivableAmount | number | |
| money | number | |
| cheque | number | |
| creditCard | number | |
| webComment | string | |
| carrierComment | string | |
| billingConfirmDate | string | |
| created | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/BillingInfoResponse",
"title": "BillingInfoResponse",
"type": "object",
"properties": {
"receivableAmount": {
"type": "number"
},
"money": {
"type": "number"
},
"cheque": {
"type": "number"
},
"creditCard": {
"type": "number"
},
"webComment": {
"type": "string"
},
"carrierComment": {
"type": "string"
},
"billingConfirmDate": {
"type": "string",
"format": "date-time"
},
"created": {
"type": "string",
"format": "date-time"
}
}
}