CreateServicePackageItemRequest
Request DTO for a service to include in a service package
Properties
| Name | Type | Description |
|---|---|---|
| billableServiceCode* | string | The code of the billable service to include |
The code of the billable service to include | ||
| billingFrequency | enum | OneOff Annual Quarterly Monthly |
OneOff Annual Quarterly Monthly | ||
| overridePricing | boolean | Whether to override the standard pricing from the billable service |
Whether to override the standard pricing from the billable service | ||
| price | number | The custom price to use when OverridePricing is true |
The custom price to use when OverridePricing is true | ||
| pricingAnswers | object | Pre-answered pricing factors (key = factor description, value = selected option name) |
Pre-answered pricing factors (key = factor description, value = selected option name) | ||
JSON Example
{
"billableServiceCode": "string",
"billingFrequency": "OneOff",
"overridePricing": false,
"price": 0,
"pricingAnswers": {}
}