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
bundleProductSettingsBundleProductOrderLineIt is the option information of the variant value in the order line item.
currencyCodeStringIt is the currency code of the order line item.
currencySymbolStringdiscountOrderLineDiscountInformation about the discount. Shows the details of the discount applied to the order line item.
discountPriceFloatIt is the discount price of the order line item.
finalPriceFloatIt 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.
finalUnitPriceFloatIt 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.
originalOrderLineItemIdStringIt 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.
sourceIdStringIt is the status enum of the order line item
statusUpdatedAtTimestampIt is the date when the last status of the order line item was updated.
stockLocationIdStringIt is the stock location id of the variant value in the order line item.
taxValueFloatIt is the tax value of the order line item.
unitPriceFloatIt is the unit price of the order line item.
Information about the variant of the order line item.