# `PolarExpress.Schemas.OrderItemSchema`
[🔗](https://github.com/jeffhuen/polar_express/blob/main/lib/polar_express/schemas/order_item_schema.ex#L2)

OrderItemSchema

An order line item.

# `t`

```elixir
@type t() :: %PolarExpress.Schemas.OrderItemSchema{
  amount: integer() | nil,
  created_at: DateTime.t() | nil,
  id: String.t() | nil,
  label: String.t() | nil,
  modified_at: DateTime.t() | nil,
  product_price_id: String.t() | nil,
  proration: boolean() | nil,
  tax_amount: integer() | nil
}
```

* `amount` - Amount in cents, before discounts and taxes.
* `created_at` - Creation timestamp of the object. Format: date-time.
* `id` - The ID of the object. Format: uuid4.
* `label` - Description of the line item charge.
* `modified_at` - Last modification timestamp of the object. Nullable.
* `product_price_id` - Associated price ID, if any. Nullable.
* `proration` - Whether this charge is due to a proration.
* `tax_amount` - Sales tax amount in cents.

# `schema_name`

---

*Consult [api-reference.md](api-reference.md) for complete listing*
