Overview
This data strcture represents a tax line on an invoice. It contains the tax type information and the amount of tax incurred.
Format
Panel | ||
---|---|---|
| ||
|
Elements
Element | Data Type | Required? | Description | Sample Data |
---|---|---|---|---|
TaxAmountOverrideFlag | Boolean | No | ||
TaxTypeIdentity | Yes | This structure represents the unique key fields associated with identifying a tax type. | ||
TaxableAmount | Double | Yes | The amount of the tax. |
Usage Example(s)
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
<b:PwsInvoiceTax> <b:TaxAmountOverrideFlag>false</b:TaxAmountOverrideFlag> <b:TaxTypeIdentity> <b:TaxTypeCode>GSTCA</b:TaxTypeCode> <b:TaxTypeId i:nil="true"/> <b:TaxTypeUid>1152921504606859965</b:TaxTypeUid> </b:TaxTypeIdentity> <b:TaxableAmount>2495.3</b:TaxableAmount> </b:PwsInvoiceTax> |
...