github.com/twilio/twilio-go@v1.20.1/rest/insights/v1/model_insights_v1_conference_participant.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 // InsightsV1ConferenceParticipant struct for InsightsV1ConferenceParticipant 22 type InsightsV1ConferenceParticipant struct { 23 // SID for this participant. 24 ParticipantSid *string `json:"participant_sid,omitempty"` 25 // The user-specified label of this participant. 26 Label *string `json:"label,omitempty"` 27 // The unique SID identifier of the Conference. 28 ConferenceSid *string `json:"conference_sid,omitempty"` 29 // Unique SID identifier of the call that generated the Participant resource. 30 CallSid *string `json:"call_sid,omitempty"` 31 // The unique SID identifier of the Account. 32 AccountSid *string `json:"account_sid,omitempty"` 33 CallDirection *string `json:"call_direction,omitempty"` 34 // Caller ID of the calling party. 35 From *string `json:"from,omitempty"` 36 // Called party. 37 To *string `json:"to,omitempty"` 38 CallStatus *string `json:"call_status,omitempty"` 39 // ISO alpha-2 country code of the participant based on caller ID or called number. 40 CountryCode *string `json:"country_code,omitempty"` 41 // Boolean. Indicates whether participant had startConferenceOnEnter=true or endConferenceOnExit=true. 42 IsModerator *bool `json:"is_moderator,omitempty"` 43 // ISO 8601 timestamp of participant join event. 44 JoinTime *time.Time `json:"join_time,omitempty"` 45 // ISO 8601 timestamp of participant leave event. 46 LeaveTime *time.Time `json:"leave_time,omitempty"` 47 // Participant durations in seconds. 48 DurationSeconds *int `json:"duration_seconds,omitempty"` 49 // Add Participant API only. Estimated time in queue at call creation. 50 OutboundQueueLength *int `json:"outbound_queue_length,omitempty"` 51 // Add Participant API only. Actual time in queue in seconds. 52 OutboundTimeInQueue *int `json:"outbound_time_in_queue,omitempty"` 53 JitterBufferSize *string `json:"jitter_buffer_size,omitempty"` 54 // Boolean. Indicated whether participant was a coach. 55 IsCoach *bool `json:"is_coach,omitempty"` 56 // Call SIDs coached by this participant. 57 CoachedParticipants *[]string `json:"coached_participants,omitempty"` 58 ParticipantRegion *string `json:"participant_region,omitempty"` 59 ConferenceRegion *string `json:"conference_region,omitempty"` 60 CallType *string `json:"call_type,omitempty"` 61 ProcessingState *string `json:"processing_state,omitempty"` 62 // Participant properties and metadata. 63 Properties *interface{} `json:"properties,omitempty"` 64 // Object containing information of actions taken by participants. Contains a dictionary of URL links to nested resources of this Conference Participant. 65 Events *interface{} `json:"events,omitempty"` 66 // Object. Contains participant call quality metrics. 67 Metrics *interface{} `json:"metrics,omitempty"` 68 // The URL of this resource. 69 Url *string `json:"url,omitempty"` 70 }