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

# Price Components

> Price components object structure and attributes

## Price Components Object

```json Example Price Components Object theme={null}
{
  "converted_payment_total": 1999,
  "currency": "USD",
  "payment_currency": "USD",
  "shipping": 0,
  "subtotal": 1999,
  "tax": 0,
  "total": 1999
}
```

## Attributes

| Attribute                 | Type   | Description                                                                          |
| :------------------------ | :----- | :----------------------------------------------------------------------------------- |
| `shipping`                | Number | The price for shipping                                                               |
| `products`                | Array  | A list of the price, quantity, and seller\_id for each product\_id in the order      |
| `subtotal`                | Number | The total price of the order before tax and other price adjustments                  |
| `tax`                     | Number | The tax collected on the order                                                       |
| `total`                   | Number | The total price paid for the order in the currency specify by the currency attribute |
| `gift_certificate`        | Number | (Optional) The amount of value used on a gift certificate placed on the account      |
| `currency`                | String | Currency of all attributes except converted\_payment\_total                          |
| `payment_currency`        | String | Currency used in the payment transaction                                             |
| `converted_payment_total` | Number | Total payment in payment\_currency currency                                          |
