Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 1.6 KB

CatalogTax.md

File metadata and controls

32 lines (21 loc) · 1.6 KB

Square.Connect.Model.CatalogTax

Properties

Name Type Description Notes
Name string The tax's name. Searchable.
CalculationPhase CalculationPhaseEnum Whether the tax is calculated based on a payment's subtotal or total. See TaxCalculationPhase for all possible values. [optional]
InclusionType InclusionTypeEnum Whether the tax is `ADDITIVE` or `INCLUSIVE`. See TaxInclusionType for all possible values. [optional]
Percentage string The percentage of the tax in decimal form, using a `'.'` as the decimal separator and without a `'%'` sign. A value of `7.5` corresponds to 7.5%. [optional]
AppliesToCustomAmounts bool? If `true`, the fee applies to custom amounts entered into the Square Point of Sale app that are not associated with a particular CatalogItem. [optional]
Enabled bool? If `true`, the tax will be shown as enabled in the Square Point of Sale app. [optional]

CalculationPhaseEnum

Name Value
SUBTOTALPHASE "TAX_SUBTOTAL_PHASE"
TOTALPHASE "TAX_TOTAL_PHASE"

InclusionTypeEnum

Name Value
ADDITIVE "ADDITIVE"
INCLUSIVE "INCLUSIVE"

[Back to Model list] [Back to API list] [Back to README]