OBJECT

Adjustment

Adjustments to a line item or invoice, e.g. promotion discounts, fees, etc.

link GraphQL Schema definition

  • type Adjustment implements Node {
  • adjustmentType: AdjustmentTypeEnum
  • # The amount adjusted. Denominated in cents.
  • amountCents: Int
  • # The amount adjusted. 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
  • # Denominated in cents.
  • amountToWithholdFromSellerRemittanceCents: Int
  • # In string with currency symbol.
  • #
  • # Arguments
  • # currency: Currency in which to display money fields. Defaults
  • # to the currency of the marketplace's home country.
  • amountToWithholdFromSellerRemittanceFormatted(
  • currency: String
  • ): String
  • # The type of discount this adjustment applies to
  • appliesTo: AdjustmentAppliesToEnum
  • # The description of the adjustment.
  • description: String
  • id: ID!
  • }