Types > OrderHistoryRefundLineItem
Commerce APITypesOrderHistoryRefundLineItem
OrderHistoryRefundLineItem

Description

Fields

amount: Int!

Amount refunded for given line item (goes into stats)

Example: 5000


fee: Int!

Refund fee

Example: 5000


line_item_id: String!

Unique order line item identifier

Example: "li_EQzGqWoY"


quantity: Int!

Amount of items refunded

Example: 5


variant_id: String!

Unique variant identifier

Example: "va_EQzGqWoY"


Used By

Types

OrderHistoryManualRefund, OrderHistoryRefundTransaction

Preview (typescript)

interface OrderHistoryRefundLineItem {
amount: number
fee: number
line_item_id: string
quantity: number
variant_id: string
}