github.com/twilio/twilio-go@v1.20.1/rest/insights/v1/model_insights_v1_video_room_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 // InsightsV1VideoRoomSummary struct for InsightsV1VideoRoomSummary 22 type InsightsV1VideoRoomSummary struct { 23 // Account SID associated with this room. 24 AccountSid *string `json:"account_sid,omitempty"` 25 // Unique identifier for the room. 26 RoomSid *string `json:"room_sid,omitempty"` 27 // Room friendly name. 28 RoomName *string `json:"room_name,omitempty"` 29 // Creation time of the room. 30 CreateTime *time.Time `json:"create_time,omitempty"` 31 // End time for the room. 32 EndTime *time.Time `json:"end_time,omitempty"` 33 RoomType *string `json:"room_type,omitempty"` 34 RoomStatus *string `json:"room_status,omitempty"` 35 // Webhook provided for status callbacks. 36 StatusCallback *string `json:"status_callback,omitempty"` 37 // HTTP method provided for status callback URL. 38 StatusCallbackMethod *string `json:"status_callback_method,omitempty"` 39 CreatedMethod *string `json:"created_method,omitempty"` 40 EndReason *string `json:"end_reason,omitempty"` 41 // Max number of total participants allowed by the application settings. 42 MaxParticipants *int `json:"max_participants,omitempty"` 43 // Number of participants. May include duplicate identities for participants who left and rejoined. 44 UniqueParticipants *int `json:"unique_participants,omitempty"` 45 // Unique number of participant identities. 46 UniqueParticipantIdentities *int `json:"unique_participant_identities,omitempty"` 47 // Actual number of concurrent participants. 48 ConcurrentParticipants *int `json:"concurrent_participants,omitempty"` 49 // Maximum number of participants allowed in the room at the same time allowed by the application settings. 50 MaxConcurrentParticipants *int `json:"max_concurrent_participants,omitempty"` 51 // Codecs used by participants in the room. Can be `VP8`, `H264`, or `VP9`. 52 Codecs *[]string `json:"codecs,omitempty"` 53 MediaRegion *string `json:"media_region,omitempty"` 54 // Total room duration from create time to end time. 55 DurationSec *int64 `json:"duration_sec,omitempty"` 56 // Combined amount of participant time in the room. 57 TotalParticipantDurationSec *int64 `json:"total_participant_duration_sec,omitempty"` 58 // Combined amount of recorded seconds for participants in the room. 59 TotalRecordingDurationSec *int64 `json:"total_recording_duration_sec,omitempty"` 60 ProcessingState *string `json:"processing_state,omitempty"` 61 // Boolean indicating if recording is enabled for the room. 62 RecordingEnabled *bool `json:"recording_enabled,omitempty"` 63 EdgeLocation *string `json:"edge_location,omitempty"` 64 // URL for the room resource. 65 Url *string `json:"url,omitempty"` 66 // Room subresources. 67 Links *map[string]interface{} `json:"links,omitempty"` 68 }