INPUT_OBJECT

AdjustmentInput

Apply one or more adjustments to a line item or invoice.

link GraphQL Schema definition

  • input AdjustmentInput {
  • # Amount of the adjustment. Denominated in cents.
  • amountCents: Int!
  • # The amount to be remitted to the seller. Denominated in cents. Must be less than
  • # the absolute value of the amount
  • amountToWithholdFromSellerRemittanceCents: Int!
  • # The description of the adjustment.
  • description: String!
  • # Allows associating the adjustment with the source of the adjustment, e.g. the ID
  • # of the promotion.
  • sourceId: ID
  • # The type of adjustment, available options: PROMOTION, FEE.
  • adjustmentType: AdjustmentTypeEnum!
  • }