OrderItem
An OrderItem
generally represents a SKU purchased by the customer. There can be one or more OrderItem
s within an Order
Implements
Fields
id (
ID!
)
ID of the object
createdOn (
DateTime
)
Time of creation
updatedOn (
DateTime
)
Time of last update
ref (
String
)
External reference of the object. Recommended to be unique.
fulfilmentChoice (
FulfilmentChoice
)
Represents the FulfilmentChoice
corresponding to this object
product (
Product!
)
Represents the Product
corresponding to this object
status (
String!
)
Status of the OrderItem.
quantity (
Int!
)
Quantity ordered
paidPrice (
Float
)
Price paid. Excludes tax.
currency (
String
)
Currency. Should ideally be a 3 letter ISO currency code. For instance AUD.
price (
Float
)
Price
taxPrice (
Float
)
Tax price
taxType (
String
)
Tax type. Supported values are GST, VAT, EXCLTAX
totalPrice (
Float
)
Total price
totalTaxPrice (
Float
)
Total tax price
order (
Order
)
The associated Order
attributes (
[Attribute]
)
List of OrderItem
attribute
s.