UserBillingSummaryDto
Summary of the tenant's per-user billing position: how many users are included
in their subscription, how many they have, and what any additional users cost.
Properties
| Name | Type | Description |
|---|---|---|
| includedUserCount | integer | Number of users included in the subscription at no extra charge |
Number of users included in the subscription at no extra charge | ||
| additionalUserPricePence | integer | Monthly price in pence for each user above IncludedUserCount. 0 = overage billing disabled. |
Monthly price in pence for each user above IncludedUserCount. 0 = overage billing disabled. | ||
| billableUserCount | integer | Current number of users counting towards the allowance (Active and Invited) |
Current number of users counting towards the allowance (Active and Invited) | ||
| additionalUserCount | integer | Number of users above the included allowance (0 when within the allowance) |
Number of users above the included allowance (0 when within the allowance) | ||
| estimatedMonthlyChargePence | integer | Estimated monthly charge in pence for the additional users |
Estimated monthly charge in pence for the additional users | ||
JSON Example
{
"includedUserCount": 0,
"additionalUserPricePence": 0,
"billableUserCount": 0,
"additionalUserCount": 0,
"estimatedMonthlyChargePence": 0
}