OBJECT

InvoiceAmendment

Amendments to an invoice.

link GraphQL Schema definition

  • type InvoiceAmendment implements Node {
  • # The total value of the commission within this amendment. Denominated in cents.
  • commissionAmountTotalCents: Int
  • # The total value of the commission within this amendment. In string with currency
  • # symbol.
  • #
  • # Arguments
  • # currency: Currency in which to display money fields. Defaults
  • # to the currency of the marketplace's home country.
  • commissionAmountTotalFormatted(currency: String): String
  • # The total value of the tax on the commissionAmountTotal. Denominated in cents.
  • commissionTaxTotalCents: Int
  • # The total value of the tax on the commissionAmountTotal. In string with currency
  • # symbol.
  • #
  • # Arguments
  • # currency: Currency in which to display money fields. Defaults
  • # to the currency of the marketplace's home country.
  • commissionTaxTotalFormatted(currency: String): String
  • createdAt: ISO8601DateTime!
  • externalTaxApplied: Boolean!
  • id: ID!
  • invoice: Invoice!
  • # The id used to identify the invoice amendment.
  • legacyId: Int!
  • # The total value of the item/s within this amendment. Denominated in cents.
  • lineItemAmountTotalCents: Int
  • # The total value of the item/s within this amendment. In string with currency
  • # symbol.
  • #
  • # Arguments
  • # currency: Currency in which to display money fields. Defaults
  • # to the currency of the marketplace's home country.
  • lineItemAmountTotalFormatted(currency: String): String
  • # The total value of the tax on the lineItemAmountTotal. Denominated in cents.
  • lineItemTaxTotalCents: Int
  • # The total value of the tax on the lineItemAmountTotal. In string with currency
  • # symbol.
  • #
  • # Arguments
  • # currency: Currency in which to display money fields. Defaults
  • # to the currency of the marketplace's home country.
  • lineItemTaxTotalFormatted(currency: String): String
  • lineItems: [InvoiceAmendmentLineItem!]!
  • # The order that this invoice amendment is for.
  • order: Order!
  • # The total value of the remittance within this amendment. Denominated in cents.
  • remittanceAmountTotalCents: Int
  • # The total value of the remittance within this amendment. In string with currency
  • # symbol.
  • #
  • # Arguments
  • # currency: Currency in which to display money fields. Defaults
  • # to the currency of the marketplace's home country.
  • remittanceAmountTotalFormatted(currency: String): String
  • # The remittance adjustment value of the invoice amendment. Denominated in cents.
  • remittanceCents: Int!
  • # The remittance adjustment value of the invoice amendment. In string with
  • # currency symbol.
  • #
  • # Arguments
  • # currency: Currency in which to display money fields. Defaults
  • # to the currency of the marketplace's home country.
  • remittanceFormatted(currency: String): String!
  • # The total value of the tax on the remittanceAmountTotal. Denominated in cents.
  • remittanceTaxTotalCents: Int
  • # The total value of the tax on the remittanceAmountTotal. In string with currency
  • # symbol.
  • #
  • # Arguments
  • # currency: Currency in which to display money fields. Defaults
  • # to the currency of the marketplace's home country.
  • remittanceTaxTotalFormatted(currency: String): String
  • # The date the remittance is processed. (This is the date the remittance_advice is
  • # created when advanced remittance is enabled)
  • remittedAt: ISO8601DateTime
  • # The tax adjustment value of the invoice amendment. Denominated in cents.
  • taxCents: Int!
  • # The tax adjustment value of the invoice amendment. In string with currency
  • # symbol.
  • #
  • # Arguments
  • # currency: Currency in which to display money fields. Defaults
  • # to the currency of the marketplace's home country.
  • taxFormatted(currency: String): String!
  • # Tax rate on invoice
  • taxRate: Float
  • # Total adjustment value of the invoice amendment. Denominated in cents.
  • totalCents: Int!
  • # Total adjustment value of the invoice amendment. In string with currency symbol.
  • #
  • # Arguments
  • # currency: Currency in which to display money fields. Defaults
  • # to the currency of the marketplace's home country.
  • totalFormatted(currency: String): String!
  • updatedAt: ISO8601DateTime!
  • }