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!
  • # The value of the commission of this line item. Denominated in cents.
  • commissionAmountCents: Int
  • # The value of the commission of this 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.
  • commissionAmountFormatted(currency: String): String
  • # The value of the tax on the commissionAmount. Denominated in cents.
  • commissionTaxCents: Int
  • # The value of the tax on the commissionAmount. In string with currency symbol.
  • #
  • # Arguments
  • # currency: Currency in which to display money fields. Defaults
  • # to the currency of the marketplace's home country.
  • commissionTaxFormatted(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
  • # The value of the item/s of this line item. Denominated in cents.
  • lineItemAmountCents: Int
  • # The value of the item/s of this 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.
  • lineItemAmountFormatted(currency: String): String
  • # The value of the tax on the lineItemAmount. Denominated in cents.
  • lineItemTaxCents: Int
  • # The value of the tax on the lineItemAmount. In string with currency symbol.
  • #
  • # Arguments
  • # currency: Currency in which to display money fields. Defaults
  • # to the currency of the marketplace's home country.
  • lineItemTaxFormatted(currency: String): String
  • quantity: Int!
  • # The value of the remittance of this line item. Denominated in cents.
  • remittanceAmountCents: Int
  • # The value of the remittance of this 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.
  • remittanceAmountFormatted(currency: String): String
  • # The value of the tax on the remittanceAmount. Denominated in cents.
  • remittanceTaxCents: Int
  • # The value of the tax on the remittanceAmount. In string with currency symbol.
  • #
  • # Arguments
  • # currency: Currency in which to display money fields. Defaults
  • # to the currency of the marketplace's home country.
  • remittanceTaxFormatted(currency: String): String
  • # 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!
  • }