Skip to main content

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

idID!required
bundleProductSettingsBundleProductOrderLine

It is the option information of the variant value in the order line item.

currencyCodeString

It is the currency code of the order line item.

currencySymbolString

Information about the discount. Shows the details of the discount applied to the order line item.

discountPriceFloat

It is the discount price of the order line item.

finalPriceFloat

It 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.

finalUnitPriceFloat

It is the unit price of the order line item.

It is the option information of the variant value in the order line item.

originalOrderLineItemIdString

It 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.

priceFloat!required

It is the selling price of the order line item.

quantityFloat!required

It is the quantity of variant in the order line item.

sourceIdString

It is the status enum of the order line item

statusUpdatedAtTimestamp

It is the date when the last status of the order line item was updated.

stockLocationIdString

It is the stock location id of the variant value in the order line item.

taxValueFloat

It is the tax value of the order line item.

unitPriceFloat

It is the unit price of the order line item.

variantOrderLineVariant!required

Information about the variant of the order line item.