SubscriptionPricePreviewDto
Preview of the subscription price for a package based on the tenant's active client count.
Properties
| Name | Type | Description |
|---|---|---|
| package | CodeAndNameDto | |
| pricingTier | CodeAndNameDto | |
| monthlyPricePence | integer | The base monthly price in pence before any discounts. |
The base monthly price in pence before any discounts. | ||
| discountPercent | integer | The active discount percentage applied (0 if no discount). |
The active discount percentage applied (0 if no discount). | ||
| discountedMonthlyPricePence | integer | The discounted monthly price in pence after applying any active discount. |
The discounted monthly price in pence after applying any active discount. | ||
JSON Example
{
"package": {
"code": "string",
"name": "string"
},
"pricingTier": {
"code": "string",
"name": "string"
},
"monthlyPricePence": 0,
"discountPercent": 0,
"discountedMonthlyPricePence": 0
}