GraphQL OBJECT

TaxTypeConfiguration

Configuration of tax types per countries and states.

link Definition

  • type TaxTypeConfiguration {
  • # Corresponding country.
  • country: Country
  • # Corresponding state.
  • state: State
  • # Corresponding client.
  • client: Client
  • # Indicates if an input field has to be shown for this tax type.
  • showInputField: Boolean
  • # The actual tax type.
  • taxType: TaxType
  • # Valid from.
  • validFrom: DateTime
  • # Valid until.
  • validUntil: DateTime
  • }

link Required by