# SubscriptionAddon

Subscription add-ons are features or top-ups that extend the functionality offered to the end user through their subscription, as defined by the associated add-on.

## Properties

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `object` | string | Yes | Type of object is always `subscriptionAddon`. |
| `id` | string | Yes | Unique identifier for the subscription add-on. |
| `activatedAt` | string,null | Yes | Time when the subscription add-on was activated. |
| `addon` | object | Yes | The add-on associated to the subscription add-on. |
| `canceledAt` | string,null | Yes | Time when the subscription add-on was canceled. |
| `createdAt` | string | Yes | Time when the subscription add-on was created. |
| `currentPeriod` | mixed | Yes | Current subscription add-on period. Only present for active subscription add-ons. |
| `endedAt` | string,null | Yes | Time when the subscription add-on was ended. The value is `null` if the subscription add-on is not ended. |
| `status` | pending | initiated | active | ended | Yes | The current status of the subscription add-on. |
| `subscription` | string | Yes | Unique identifier of the subscription the add-on applies to. |
| `user` | string | Yes | Unique identifier of the user the subscription add-on belongs to. |
