Properties
| Name | Type | Description |
|---|---|---|
| totalNumbers | number | Indicates the total number of phone numbers requested to be moved. |
| numbersDeleted | number | Indicates the total number of phone numbers successfully deleted. |
| numbersMoved | number | Indicates the total number of phone numbers successfully moved. |
| numbersFailed | number | Indicates the total number of phone numbers failed. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CountObject",
"title": "CountObject",
"type": "object",
"required": [
"totalNumbers",
"numbersDeleted",
"numbersMoved",
"numbersFailed"
],
"properties": {
"totalNumbers": {
"type": "number",
"description": "Indicates the total number of phone numbers requested to be moved."
},
"numbersDeleted": {
"type": "number",
"description": "Indicates the total number of phone numbers successfully deleted."
},
"numbersMoved": {
"type": "number",
"description": "Indicates the total number of phone numbers successfully moved."
},
"numbersFailed": {
"type": "number",
"description": "Indicates the total number of phone numbers failed."
}
}
}