Skip to content

Latest commit

 

History

History
52 lines (32 loc) · 1.52 KB

Conference.md

File metadata and controls

52 lines (32 loc) · 1.52 KB

Conference

Properties

Name Type Description Notes
recordType RecordTypeEnum
id String Uniquely identifies the conference
name String Name of the conference
createdAt String ISO 8601 formatted date of when the conference was created
expiresAt String ISO 8601 formatted date of when the conference will expire
updatedAt String ISO 8601 formatted date of when the conference was last updated [optional]
region String Region where the conference is hosted [optional]
status StatusEnum Status of the conference [optional]
endReason EndReasonEnum Reason why the conference ended [optional]
endedBy ConferenceEndedBy [optional]
connectionId String Identifies the connection associated with the conference [optional]

Enum: RecordTypeEnum

Name Value
CONFERENCE "conference"

Enum: StatusEnum

Name Value
INIT "init"
IN_PROGRESS "in_progress"
COMPLETED "completed"

Enum: EndReasonEnum

Name Value
ALL_LEFT "all_left"
ENDED_VIA_API "ended_via_api"
HOST_LEFT "host_left"
TIME_EXCEEDED "time_exceeded"