INPUT_OBJECT

PriceBreakdownInput

link GraphQL Schema definition

  • input PriceBreakdownInput {
  • # Total amount for each item. Denominated in cents.
  • lineItemAmount: Int!
  • # The tax amount on the lineItemAmount. Denominated in cents.
  • lineItemTax: Int
  • # The commission component of the lineItemAmount. Denominated in cents.
  • commissionAmount: Int
  • # The tax amount on the commissionAmount. Denominated in cents.
  • commissionTax: Int
  • # The remittance component of the lineItemAmount. Denominated in cents.
  • remittanceAmount: Int
  • # The tax amount on the remittanceAmount. Denominated in cents.
  • remittanceTax: Int
  • # 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.
  • customLineItemTaxRate: Decimal
  • }