API Docs / Schemas / SubscriptionPricePreviewDto

SubscriptionPricePreviewDto

Preview of the subscription price for a package based on the tenant's active client count.

Properties

Name Type Description
packageCodeAndNameDto
pricingTierCodeAndNameDto
monthlyPricePenceinteger

The base monthly price in pence before any discounts.

The base monthly price in pence before any discounts.

discountPercentinteger

The active discount percentage applied (0 if no discount).

The active discount percentage applied (0 if no discount).

discountedMonthlyPricePenceinteger

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
}