OrderLineItem
type OrderLineItem {
id: ID!
bundleProductSettings: BundleProductOrderLine
currencyCode: String
currencySymbol: String
discount: OrderLineDiscount
discountPrice: Float
finalPrice: Float
finalUnitPrice: Float
options: [OrderLineOption!]
originalOrderLineItemId: String
price: Float!
quantity: Float!
sourceId: String
status: OrderLineItemStatusEnum!
statusUpdatedAt: Timestamp
stockLocationId: String
taxValue: Float
unitPrice: Float
variant: OrderLineVariant!
}
Fields
bundleProductSettings
BundleProductOrderLineIt is the option information of the variant value in the order line item.
currencyCode
StringIt is the currency code of the order line item.
currencySymbol
Stringdiscount
OrderLineDiscountInformation about the discount. Shows the details of the discount applied to the order line item.
discountPrice
FloatIt is the discount price of the order line item.
finalPrice
FloatIt is the final price of the order line item. If the discount price is less than the sell price, the final price is equal to the discount price.
finalUnitPrice
FloatIt is the unit price of the order line item.
options
[OrderLineOption!]It is the option information of the variant value in the order line item.
originalOrderLineItemId
StringIt is the original order line item id of the line item. If the line item is derived from another line item, this field is filled.
It is the selling price of the order line item.
It is the quantity of variant in the order line item.
sourceId
StringIt is the status enum of the order line item
statusUpdatedAt
TimestampIt is the date when the last status of the order line item was updated.
stockLocationId
StringIt is the stock location id of the variant value in the order line item.
taxValue
FloatIt is the tax value of the order line item.
unitPrice
FloatIt is the unit price of the order line item.
Information about the variant of the order line item.