INPUT_OBJECT

UpdateOverageServiceMutationInput

The input object that defines the fields for the updateOverageService mutation.

link GraphQL Schema definition

  • input UpdateOverageServiceMutationInput {
  • # Whether or not this is enabled.
  • enabled: Boolean
  • # A descriptive name.
  • name: String
  • # How this is applied.
  • application: ServiceApplication
  • # The amount, in the smallest currency value (e.g. cents, pence, pesos.)
  • amount: Int
  • # The ID of the company that this entity operates under.
  • company_id: Int64Bit
  • # The ID of a GeneralLedgerCode.
  • general_ledger_code_id: Int64Bit
  • # The taxes applied when this service creates a transaction.
  • taxes: [ServiceTaxMutationInput]
  • # A value in gigabytes.
  • gigabytes: Int
  • # If the amount for this service is zero, it will still display on invoices.
  • display_if_zero: Boolean
  • # The ID of a tax definition on a transaction.
  • tax_definition_id: Int64Bit
  • # The ID of a tax definition on a reversed transaction.
  • reverse_tax_definition_id: Int64Bit
  • # A note about this entity.
  • note: NoteMutationInput
  • # Setting this value to `true` will set `general_ledger_code_id` to null.
  • unset_general_ledger_code_id: Boolean
  • # Setting this value to `true` will set `company_id` to null.
  • unset_company_id: Boolean
  • # Setting this value to `true` will set `tax_definition_id` to null.
  • unset_tax_definition_id: Boolean
  • # Setting this value to `true` will set `reverse_tax_definition_id` to null.
  • unset_reverse_tax_definition_id: Boolean
  • }

link Require by