OBJECT

InvoiceAmendmentLineItem

Line items associated with an invoice amendment.

link GraphQL Schema definition

  • type InvoiceAmendmentLineItem implements Node {
  • # The amount (per item) that this line item is adding to the amendment.
  • # Denominated in cents.
  • amountCents: Int!
  • # The amount (per item) that this line item is adding to the 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.
  • amountFormatted(currency: String): String!
  • # Amendment line item description where it is not amending an invoice line item.
  • custom: String
  • # Tax rate for the custom line item (for display purposes only). It defaults to
  • # the Marketplace default tax rate if not provided in the refund request approve
  • # mutation.
  • customLineItemTaxRate: Decimal
  • # Does this refer to dispatched or not-yet-dispatched line items?
  • dispatched: Boolean
  • id: ID!
  • # The invoice line item that is being amended.
  • lineItem: LineItem
  • quantity: Int!
  • # Status of the invoice amendment line item
  • status: InvoiceAmendmentLineItemStatusEnum!
  • # Tax on the line item. Denominated in cents.
  • taxCents: Int
  • # Tax on the line item. 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
  • # Line item tax rate
  • taxRate: Float
  • # The total that this line item is adding to the amendment. Denominated in cents.
  • totalCents: Int!
  • # The total that this line item is adding to the 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!
  • }