PricingTierDto
Response DTO for pricing tier information
Properties
| Name | Type | Description |
|---|---|---|
| code | string | The unique code for this pricing tier |
The unique code for this pricing tier | ||
| name | string | Display name of the pricing tier |
Display name of the pricing tier | ||
| minClients | integer | Minimum number of clients for this tier |
Minimum number of clients for this tier | ||
| maxClients | integer | Maximum number of clients for this tier (null for unlimited) |
Maximum number of clients for this tier (null for unlimited) | ||
| monthlyPricePence | integer | Monthly price in pence |
Monthly price in pence | ||
| isPrivate | boolean | Whether this tier is private. Private tiers can only be assigned by SuperAdmins. |
Whether this tier is private. Private tiers can only be assigned by SuperAdmins. | ||
JSON Example
{
"code": "string",
"name": "string",
"minClients": 0,
"maxClients": 0,
"monthlyPricePence": 0
}