INPUT_OBJECT
CreateGeoTaxZoneMutationInput
The input object that defines the fields for the createGeoTaxZone mutation.
link GraphQL Schema definition
- input CreateGeoTaxZoneMutationInput {
- # A descriptive name.
- : String!
- # The ID of a Tax.
- : Int64Bit!
- # 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!
- # A state, province, or other country subdivision.
- : Subdivision
- # A city.
- : String
- # A US county. Only used for US addresses.
- : UsCounty
- # A two character country code.
- : Country
- # A ZIP or postal code.
- : String
- # Whether to match on partial ZIP/postal codes.
- : Boolean!
- # A note about this entity.
- : NoteMutationInput
- }