Skip to content

Latest commit

 

History

History
30 lines (18 loc) · 1.23 KB

CustomerServiceRecord.md

File metadata and controls

30 lines (18 loc) · 1.23 KB

CustomerServiceRecord

Properties

Name Type Description Notes
id UUID Uniquely identifies this customer service record [optional] [readonly]
phoneNumber String The phone number of the customer service record. [optional]
status StatusEnum The status of the customer service record [optional]
errorMessage String The error message in case status is `failed`. This field would be null in case of `pending` or `completed` status. [optional]
result CustomerServiceRecordResult [optional]
recordType String Identifies the type of the resource. [optional] [readonly]
createdAt OffsetDateTime ISO 8601 formatted date indicating when the resource was created. [optional] [readonly]
updatedAt OffsetDateTime ISO 8601 formatted date indicating when the resource was created. [optional] [readonly]

Enum: StatusEnum

Name Value
PENDING "pending"
COMPLETED "completed"
FAILED "failed"