Properties
| Name | Type | Description |
|---|---|---|
| DisplayCustomer | boolean | Display customer information on a bill. |
| DisplayTaxation | boolean | Display taxation detail on a bill. |
| TrackReceivable | boolean | Tracking of payments is enabled for bill, only applicable for `BillType` of `Invoice`. |
| DisplayCid | boolean | Display CID number on bill, only applicable for `BillType` of `Invoice`. |
| Rebated | boolean | Whether the bill is rebated (both fully or partially). |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/BillOptions",
"title": "Bill options",
"type": "object",
"properties": {
"DisplayCustomer": {
"type": "boolean",
"description": "Display customer information on a bill."
},
"DisplayTaxation": {
"type": "boolean",
"description": "Display taxation detail on a bill."
},
"TrackReceivable": {
"type": "boolean",
"description": "Tracking of payments is enabled for bill, only applicable for `BillType` of `Invoice`."
},
"DisplayCid": {
"type": "boolean",
"description": "Display CID number on bill, only applicable for `BillType` of `Invoice`."
},
"Rebated": {
"type": "boolean",
"description": "Whether the bill is rebated (both fully or partially)."
}
},
"additionalProperties": false,
"description": "Options of the bill.",
"x-schema-id": "BillOptions"
}