OBJECT

InvoiceAmendment

Amendments to an invoice.

link GraphQL Schema definition

  • type InvoiceAmendment implements Node {
  • createdAt: ISO8601DateTime!
  • externalTaxApplied: Boolean!
  • id: ID!
  • invoice: Invoice!
  • # The id used to identify the invoice amendment.
  • legacyId: Int!
  • lineItems: [InvoiceAmendmentLineItem!]!
  • # The order that this invoice amendment is for.
  • order: Order!
  • # 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!
  • 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!
  • }