SubscriptionDiscountDto
Response DTO for an active subscription discount on a tenant.
Properties
| Name | Type | Description |
|---|---|---|
| discountCodeValue | string | The discount code that was redeemed. |
The discount code that was redeemed. | ||
| discountPercent | integer | The percentage discount being applied. |
The percentage discount being applied. | ||
| startDate | string | When the discount started. |
When the discount started. | ||
| endDate | string | When the discount expires. Null means permanent. |
When the discount expires. Null means permanent. | ||
| hasBeenBilled | boolean | Whether this discount has been applied to at least one billing cycle. |
Whether this discount has been applied to at least one billing cycle. | ||
JSON Example
{
"discountCodeValue": "string",
"discountPercent": 0,
"startDate": "2024-01-01T00:00:00Z",
"endDate": "2024-01-01T00:00:00Z",
"hasBeenBilled": false
}