INPUT_OBJECT
CreateTaxMutationInput
The input object that defines the fields for the createTax mutation.
link GraphQL Schema definition
- input CreateTaxMutationInput {
- # A descriptive name.
- String! :
- # Whether this `Tax` is applied as a percentage of the `Service` charge, or as a
- # flat rate.
- TaxApplication! :
- # The rate for a tax. For a percentage based tax, this is a percentage. For a flat
- # tax, it is a currency value in the smallest currency unit (e.g. cents, pence,
- # pesos.)
- Float! :
- # Whether this tax is applied based on the account being in a specific geography,
- # or whether it is applied to all accounts.
- TaxType! :
- # A note about this entity.
- NoteMutationInput :
- }