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) | ||
| proposalLimitPerMonth | integer | Proposal limit per month (null for unlimited) |
Proposal limit per month (null for unlimited) | ||
| monthlyPriceStandardPence | integer | Monthly price for Standard package in pence |
Monthly price for Standard package in pence | ||
| monthlyPriceProPence | integer | Monthly price for Pro package in pence |
Monthly price for Pro package in pence | ||
JSON Example
{
"code": "string",
"name": "string",
"minClients": 0,
"maxClients": 0,
"proposalLimitPerMonth": 0
}