# The Product object

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `id` | string | yes |  |
| `name` | string | yes |  |
| `type` | string | yes | One of: `once`, `subscription`, `shipping_costs`. |
| `amount` | string | yes |  |
| `currency` | string | yes |  |
| `interval` | string | no |  |
| `times` | integer | no |  |
| `wc_product_id` | integer | no |  |

```json
{
    "id": "prod_abc123",
    "name": "Premium Plan",
    "type": "subscription",
    "amount": "29.99",
    "currency": "EUR",
    "interval": "month",
    "times": 12,
    "wc_product_id": 1234
}
```
