Properties
| Name | Type | Description |
|---|---|---|
| Invoiceable | boolean | Whether the company is invoiceable or not. |
| AddFeesToInvoices | boolean | Whether the company has an additional fee applied for invoicing or not. |
| AddTaxDeductedPaymentToInvoices | boolean | Whether tax-deducted payments should be automatically added to invoices. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CompanyAccountOptions",
"title": "Company options",
"type": "object",
"properties": {
"Invoiceable": {
"type": "boolean",
"description": "Whether the company is invoiceable or not."
},
"AddFeesToInvoices": {
"type": "boolean",
"description": "Whether the company has an additional fee applied for invoicing or not."
},
"AddTaxDeductedPaymentToInvoices": {
"type": "boolean",
"description": "Whether tax-deducted payments should be automatically added to invoices."
}
},
"additionalProperties": false,
"x-schema-id": "CompanyAccountOptions"
}