INPUT_OBJECT

RefundRequestLineItemApproveInput

link GraphQL Schema definition

  • input RefundRequestLineItemApproveInput {
  • # The amount to be refunded to the shopper. Denominated in cents.
  • lineItemAmount: Int!
  • # The tax amount on the lineItemAmount. Denominated in cents. If one is not
  • # provided it will be calculated using line_item_amount.
  • lineItemTax: Int
  • # The commission component of the lineItemAmount. Denominated in cents.
  • commissionAmount: Int!
  • # The tax amount on the commissionAmount. Denominated in cents. If one is not
  • # provided it will be calculated using commission_amount.
  • commissionTax: Int
  • # The remittance component of the lineItemAmount. Denominated in cents.
  • remittanceAmount: Int!
  • # The tax amount on the remittanceAmount. If one is not provided it will be
  • # calculated using commission_amount.
  • remittanceTax: Int
  • # The ID for the refund request line item for refund. Supply only line items with
  • # status REFUND_ACCEPTED.
  • id: ID!
  • }