github.com/twilio/twilio-go@v1.20.1/rest/insights/v1/model_insights_v1_conference.go (about) 1 /* 2 * This code was generated by 3 * ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __ 4 * | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/ 5 * | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \ 6 * 7 * Twilio - Insights 8 * This is the public Twilio REST API. 9 * 10 * NOTE: This class is auto generated by OpenAPI Generator. 11 * https://openapi-generator.tech 12 * Do not edit the class manually. 13 */ 14 15 package openapi 16 17 import ( 18 "time" 19 ) 20 21 // InsightsV1Conference struct for InsightsV1Conference 22 type InsightsV1Conference struct { 23 // The unique SID identifier of the Conference. 24 ConferenceSid *string `json:"conference_sid,omitempty"` 25 // The unique SID identifier of the Account. 26 AccountSid *string `json:"account_sid,omitempty"` 27 // Custom label for the conference resource, up to 64 characters. 28 FriendlyName *string `json:"friendly_name,omitempty"` 29 // Conference creation date and time in ISO 8601 format. 30 CreateTime *time.Time `json:"create_time,omitempty"` 31 // Timestamp in ISO 8601 format when the conference started. Conferences do not start until at least two participants join, at least one of whom has startConferenceOnEnter=true. 32 StartTime *time.Time `json:"start_time,omitempty"` 33 // Conference end date and time in ISO 8601 format. 34 EndTime *time.Time `json:"end_time,omitempty"` 35 // Conference duration in seconds. 36 DurationSeconds *int `json:"duration_seconds,omitempty"` 37 // Duration of the between conference start event and conference end event in seconds. 38 ConnectDurationSeconds *int `json:"connect_duration_seconds,omitempty"` 39 Status *string `json:"status,omitempty"` 40 // Maximum number of concurrent participants as specified by the configuration. 41 MaxParticipants *int `json:"max_participants,omitempty"` 42 // Actual maximum number of concurrent participants in the conference. 43 MaxConcurrentParticipants *int `json:"max_concurrent_participants,omitempty"` 44 // Unique conference participants based on caller ID. 45 UniqueParticipants *int `json:"unique_participants,omitempty"` 46 EndReason *string `json:"end_reason,omitempty"` 47 // Call SID of the participant whose actions ended the conference. 48 EndedBy *string `json:"ended_by,omitempty"` 49 MixerRegion *string `json:"mixer_region,omitempty"` 50 MixerRegionRequested *string `json:"mixer_region_requested,omitempty"` 51 // Boolean. Indicates whether recording was enabled at the conference mixer. 52 RecordingEnabled *bool `json:"recording_enabled,omitempty"` 53 // Potential issues detected by Twilio during the conference. 54 DetectedIssues *interface{} `json:"detected_issues,omitempty"` 55 // Tags for detected conference conditions and participant behaviors which may be of interest. 56 Tags *[]string `json:"tags,omitempty"` 57 // Object. Contains details about conference tags including severity. 58 TagInfo *interface{} `json:"tag_info,omitempty"` 59 ProcessingState *string `json:"processing_state,omitempty"` 60 // The URL of this resource. 61 Url *string `json:"url,omitempty"` 62 // Contains a dictionary of URL links to nested resources of this Conference. 63 Links *map[string]interface{} `json:"links,omitempty"` 64 }