Properties
| Name | Type | Description |
|---|---|---|
| address | object | The address details of the billing entity. |
| string | The email address of the billing entity. | |
| id | string | The unique identifier of the billing entity, for use as `billingEntityId` when creating an order. |
| name | string | The unique name of the billing entity. |
| taxId | string | The tax number of the billing entity. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/BillingEntity",
"title": "BillingEntity",
"properties": {
"address": {
"description": "The address details of the billing entity.",
"$ref": "#/components/schemas/Address"
},
"email": {
"description": "The email address of the billing entity.",
"type": "string"
},
"id": {
"description": "The unique identifier of the billing entity, for use as `billingEntityId` when creating an order.",
"type": "string"
},
"name": {
"description": "The unique name of the billing entity.",
"type": "string"
},
"taxId": {
"description": "The tax number of the billing entity.",
"type": "string"
}
},
"type": "object"
}