github.com/twilio/twilio-go@v1.20.1/rest/insights/v1/model_insights_v1_video_participant_summary.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 // InsightsV1VideoParticipantSummary struct for InsightsV1VideoParticipantSummary 22 type InsightsV1VideoParticipantSummary struct { 23 // Unique identifier for the participant. 24 ParticipantSid *string `json:"participant_sid,omitempty"` 25 // The application-defined string that uniquely identifies the participant within a Room. 26 ParticipantIdentity *string `json:"participant_identity,omitempty"` 27 // When the participant joined the room. 28 JoinTime *time.Time `json:"join_time,omitempty"` 29 // When the participant left the room. 30 LeaveTime *time.Time `json:"leave_time,omitempty"` 31 // Amount of time in seconds the participant was in the room. 32 DurationSec *int64 `json:"duration_sec,omitempty"` 33 // Account SID associated with the room. 34 AccountSid *string `json:"account_sid,omitempty"` 35 // Unique identifier for the room. 36 RoomSid *string `json:"room_sid,omitempty"` 37 Status *string `json:"status,omitempty"` 38 // Codecs detected from the participant. Can be `VP8`, `H264`, or `VP9`. 39 Codecs *[]string `json:"codecs,omitempty"` 40 // Reason the participant left the room. See [the list of possible values here](https://www.twilio.com/docs/video/troubleshooting/video-log-analyzer-api#end_reason). 41 EndReason *string `json:"end_reason,omitempty"` 42 // Errors encountered by the participant. 43 ErrorCode *int `json:"error_code,omitempty"` 44 // Twilio error code dictionary link. 45 ErrorCodeUrl *string `json:"error_code_url,omitempty"` 46 MediaRegion *string `json:"media_region,omitempty"` 47 // Object containing information about the participant's data from the room. See [below](https://www.twilio.com/docs/video/troubleshooting/video-log-analyzer-api#properties) for more information. 48 Properties *interface{} `json:"properties,omitempty"` 49 EdgeLocation *string `json:"edge_location,omitempty"` 50 // Object containing information about the SDK name and version. See [below](https://www.twilio.com/docs/video/troubleshooting/video-log-analyzer-api#publisher_info) for more information. 51 PublisherInfo *interface{} `json:"publisher_info,omitempty"` 52 // URL of the participant resource. 53 Url *string `json:"url,omitempty"` 54 }