INPUT_OBJECT

RefundRequestCustomLineItemApproveInput

link GraphQL Schema definition

  • input RefundRequestCustomLineItemApproveInput {
  • # 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
  • # Description of custom refund request line item that is not associated with an
  • # invoice line item (to be used only when creating a new custom refund request
  • # line item)
  • custom: String!
  • # Tax rate for the custom line item (for display purposes only). Provide this
  • # value alongside lineItemTax. If not provided, it defaults to Marketplace default
  • # tax rate.
  • lineItemTaxRate: Decimal
  • # IDs used by external systems to fetch Prototypes
  • externalIds: [KeyValueInput!]
  • }