Properties
| Name | Type | Description |
|---|---|---|
| ServiceId | string | Unique identifier of the related service. |
| RoutedItemTypes | object | Type of items that are going to be routed. |
| RateIds | array | Unique identifiers of `Rates` that will be applied as billing automation condition. |
| ProductCategoryIds | array | Unique identifiers of `Product Categories` that will be applied as billing automation condition. |
| ProductIds | array | Unique identifiers of `Products` that will be applied as billing automation condition. |
| AccountingCategories | array | List of accounting categories that will be applied as billing automation condition. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/BillingAutomationAssignmentAddParameters",
"title": "Billing automation assignment add parameters",
"required": [
"RoutedItemTypes",
"ServiceId"
],
"type": "object",
"properties": {
"ServiceId": {
"type": "string",
"description": "Unique identifier of the related service.",
"format": "uuid"
},
"RoutedItemTypes": {
"title": "Billing automation item types parameters",
"allOf": [
{
"$ref": "#/components/schemas/BillingAutomationItemTypesParameters"
}
],
"description": "Type of items that are going to be routed."
},
"RateIds": {
"maxItems": 100,
"type": "array",
"items": {
"type": "string",
"format": "uuid"
},
"description": "Unique identifiers of `Rates` that will be applied as billing automation condition.",
"nullable": true
},
"ProductCategoryIds": {
"maxItems": 100,
"type": "array",
"items": {
"type": "string",
"format": "uuid"
},
"description": "Unique identifiers of `Product Categories` that will be applied as billing automation condition.",
"nullable": true
},
"ProductIds": {
"maxItems": 100,
"type": "array",
"items": {
"type": "string",
"format": "uuid"
},
"description": "Unique identifiers of `Products` that will be applied as billing automation condition.",
"nullable": true
},
"AccountingCategories": {
"maxItems": 100,
"type": "array",
"items": {
"$ref": "#/components/schemas/BillingAutomationAccountingCategoryAssignment"
},
"description": "List of accounting categories that will be applied as billing automation condition.",
"nullable": true
}
},
"additionalProperties": false,
"x-schema-id": "BillingAutomationAssignmentAddParameters"
}