OBJECT

RefundRequestLineItem

Line item on a refund request

link GraphQL Schema definition

  • type RefundRequestLineItem implements Node {
  • # Money amount being requested for this refund. Denominated in cents.
  • amountCents: Int!
  • # Money amount being requested for this refund. 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!
  • # Money amount for each item in this refund. Denominated in cents.
  • amountPerItemCents: Int!
  • # Money amount for each item in this refund. In string with currency symbol.
  • #
  • # Arguments
  • # currency: Currency in which to display money fields. Defaults
  • # to the currency of the marketplace's home country.
  • amountPerItemFormatted(currency: String): String!
  • # The reason of action deny refund
  • denyRefundReason: String
  • # Description of refund request line item (used only for custom line items not
  • # associated with invoice line items).
  • description: String
  • # Does this refer to dispatched or not-yet-dispatched line items?
  • dispatched: Boolean
  • externalIds: [ExternalID!]!
  • id: ID!
  • legacyId: Int!
  • # Invoice line item for which a refund is being requested.
  • lineItem: LineItem
  • # Metadata key/values
  • metadata: [Metadatum!]!
  • # Notes associated with this refund request.
  • notes: [RefundRequestNote!]!
  • # True if this line item only changes the amount to reclaim from the retailer
  • # (remittance). Only a marketplace operator can supply this field.
  • onlyRemittance: Boolean!
  • # Quantity of the item for which a refund is being requested.
  • quantity: Int!
  • # Reason the refund is being requested for this line item.
  • reason: String
  • # The refund request for which this is a line item.
  • refundRequest: RefundRequest!
  • # Shipments associated with this refund request line item.
  • shipments: [ReturnShipment!]!
  • # The status of this refund request line item
  • status: RefundRequestLineItemStatusEnum!
  • }