# The OrderProduct object

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `next_order` | string | no |  |
| `quantity` | integer | yes |  |
| `product` | object | yes |  |
| `product.id` | string | no |  |
| `product.name` | string | no |  |
| `product.type` | string | no | One of: `once`, `subscription`, `shipping_costs`. |
| `product.amount` | string | no |  |
| `product.currency` | string | no | One of: `AED`, `AUD`, `BGN`, `BRL`, `CAD`, `CHF`, `CZK`, `DKK`, `EUR`, `GBP`, `HKD`, `HUF`, `ILS`, `ISK`, `JPY`, `MXN`, `MYR`, `NOK`, `NZD`, `PHP`, `PLN`, `RON`, `SEK`, `SGD`, `THB`, `TWD`, `USD`, `ZAR`. |
| `product.interval` | string | no | One of: `day`, `week`, `month`, `year`. |
| `product.times` | integer | no |  |
| `product.wc_product_id` | integer | no |  |

```json
{
    "next_order": "2025-02-01",
    "quantity": 2,
    "product": {
        "id": "prod_abc123",
        "name": "Premium Plan",
        "type": "subscription",
        "amount": "29.99",
        "currency": "EUR",
        "interval": "month",
        "times": 12,
        "wc_product_id": 1234
    }
}
```
