> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sibipro.com/llms.txt
> Use this file to discover all available pages before exploring further.

# OrderingOrderLineItem

An object representing a line item in an order.

```graphql theme={null}
type OrderingOrderLineItem {
  sku: String!
  name: String!
  quantity: Int!
  unitOfMeasure: String!
  unitPriceCents: Int!
  totalPriceCents: Int!
}
```

### `sku`

`string` - The stock-keeping unit (SKU) identifier for the product ordered in this line item.

***

### `name`

`string` - The human readable name of the product ordered in this line item.

***

### `quantity`

`number` - The number of units purchased for this item.

***

### `unitOfMeasure`

`string` - The unit of measurement for this item (e.g., EA for each).

***

### `unitPriceCents`

`number` - The price per unit of the item, represented in cents.

***

### `totalPriceCents`

`number` - The total price for the line item, accounting for the quantity and unit price, represented in cents.
