Properties
| Name | Type | Description |
|---|---|---|
| contact_id | string | |
| contacts | object | |
| created_at | string | |
| end_at | string | |
| id | string | |
| is_private | boolean | |
| raw | object | |
| start_at | string | |
| telephone | object | |
| type | string | |
| updated_at | string | |
| user_id | string | |
| user_name | string | |
| user_phone | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UcCall",
"title": "UcCall",
"properties": {
"contact_id": {
"type": "string"
},
"contacts": {
"$ref": "#/components/schemas/property_UcCall_contacts"
},
"created_at": {
"format": "date-time",
"type": "string"
},
"end_at": {
"format": "date-time",
"type": "string"
},
"id": {
"type": "string"
},
"is_private": {
"type": "boolean"
},
"raw": {
"additionalProperties": true,
"type": "object"
},
"start_at": {
"format": "date-time",
"type": "string"
},
"telephone": {
"$ref": "#/components/schemas/property_UcCall_telephone"
},
"type": {
"enum": [
"INBOUND",
"OUTBOUND"
],
"type": "string",
"x-speakeasy-unknown-values": "allow"
},
"updated_at": {
"format": "date-time",
"type": "string"
},
"user_id": {
"type": "string"
},
"user_name": {
"type": "string"
},
"user_phone": {
"type": "string"
}
},
"type": "object"
}