# Voucher

Vouchers describe the discounts to apply to quotes and subscriptions.

## Properties

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `object` | string | Yes | Type of object is always `voucher`. |
| `id` | string | Yes | Unique identifier for the voucher. |
| `createdAt` | string | Yes | Time when the voucher was created. |
| `name` | string | Yes | The voucher's name. |
| `priceDiscount` | object,null | Yes | The price amount of the discount applied via the voucher. A voucher object has always either a priceDiscount or a priceDiscountPercentage. |
| `priceDiscountPercentage` | number,null | Yes | The percentage amount of the discount applied via the voucher. A voucher object has always either a priceDiscount or a priceDiscountPercentage. |
| `recurrence` | object | Yes | Details on whether and for how long the discounts applied via the voucher recur. |
| `redemptions` | integer | Yes | Number of times the voucher has been redeemed. |
| `retiredReason` | null | manualAction | expired | maxRedemptionsReached | unknown | Yes | Label indicating the reason why the voucher is retired. |
| `status` | available | retired | Yes |  |
