forked from MyPureCloud/platform-client-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
video.go
300 lines (194 loc) · 7.72 KB
/
video.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
package platformclientv2
import (
"time"
"github.com/leekchan/timeutil"
"encoding/json"
"strconv"
"strings"
)
// Video
type Video struct {
// State - The connection state of this communication.
State *string `json:"state"`
// Id - A globally unique identifier for this communication.
Id *string `json:"id"`
// Context - The room id context (xmpp jid) for the conference session.
Context *string `json:"context"`
// AudioMuted - Indicates whether this participant has muted their outgoing audio.
AudioMuted *bool `json:"audioMuted"`
// VideoMuted - Indicates whether this participant has muted/paused their outgoing video.
VideoMuted *bool `json:"videoMuted"`
// SharingScreen - Indicates whether this participant is sharing their screen to the session.
SharingScreen *bool `json:"sharingScreen"`
// PeerCount - The number of peer participants from the perspective of the participant in the conference.
PeerCount *int `json:"peerCount"`
// DisconnectType - System defined string indicating what caused the communication to disconnect. Will be null until the communication disconnects.
DisconnectType *string `json:"disconnectType"`
// StartAlertingTime - The timestamp the communication has when it is first put into an alerting state. Date time is represented as an ISO-8601 string. For example: yyyy-MM-ddTHH:mm:ss[.mmm]Z
StartAlertingTime *time.Time `json:"startAlertingTime"`
// ConnectedTime - The timestamp when this communication was connected in the cloud clock. Date time is represented as an ISO-8601 string. For example: yyyy-MM-ddTHH:mm:ss[.mmm]Z
ConnectedTime *time.Time `json:"connectedTime"`
// DisconnectedTime - The timestamp when this communication disconnected from the conversation in the provider clock. Date time is represented as an ISO-8601 string. For example: yyyy-MM-ddTHH:mm:ss[.mmm]Z
DisconnectedTime *time.Time `json:"disconnectedTime"`
// Provider - The source provider for the video.
Provider *string `json:"provider"`
// PeerId - The id of the peer communication corresponding to a matching leg for this communication.
PeerId *string `json:"peerId"`
// Msids - List of media stream ids
Msids *[]string `json:"msids"`
// Self - Address and name data for a call endpoint.
Self *Address `json:"self"`
// Wrapup - Call wrap up or disposition data.
Wrapup *Wrapup `json:"wrapup"`
// AfterCallWork - After-call work for the communication.
AfterCallWork *Aftercallwork `json:"afterCallWork"`
// AfterCallWorkRequired - Indicates if after-call work is required for a communication. Only used when the ACW Setting is Agent Requested.
AfterCallWorkRequired *bool `json:"afterCallWorkRequired"`
// InitialState - The initial connection state of this communication.
InitialState *string `json:"initialState"`
}
func (o *Video) MarshalJSON() ([]byte, error) {
// Redundant initialization to avoid unused import errors for models with no Time values
_ = timeutil.Timedelta{}
type Alias Video
StartAlertingTime := new(string)
if o.StartAlertingTime != nil {
*StartAlertingTime = timeutil.Strftime(o.StartAlertingTime, "%Y-%m-%dT%H:%M:%S.%fZ")
} else {
StartAlertingTime = nil
}
ConnectedTime := new(string)
if o.ConnectedTime != nil {
*ConnectedTime = timeutil.Strftime(o.ConnectedTime, "%Y-%m-%dT%H:%M:%S.%fZ")
} else {
ConnectedTime = nil
}
DisconnectedTime := new(string)
if o.DisconnectedTime != nil {
*DisconnectedTime = timeutil.Strftime(o.DisconnectedTime, "%Y-%m-%dT%H:%M:%S.%fZ")
} else {
DisconnectedTime = nil
}
return json.Marshal(&struct {
State *string `json:"state"`
Id *string `json:"id"`
Context *string `json:"context"`
AudioMuted *bool `json:"audioMuted"`
VideoMuted *bool `json:"videoMuted"`
SharingScreen *bool `json:"sharingScreen"`
PeerCount *int `json:"peerCount"`
DisconnectType *string `json:"disconnectType"`
StartAlertingTime *string `json:"startAlertingTime"`
ConnectedTime *string `json:"connectedTime"`
DisconnectedTime *string `json:"disconnectedTime"`
Provider *string `json:"provider"`
PeerId *string `json:"peerId"`
Msids *[]string `json:"msids"`
Self *Address `json:"self"`
Wrapup *Wrapup `json:"wrapup"`
AfterCallWork *Aftercallwork `json:"afterCallWork"`
AfterCallWorkRequired *bool `json:"afterCallWorkRequired"`
InitialState *string `json:"initialState"`
*Alias
}{
State: o.State,
Id: o.Id,
Context: o.Context,
AudioMuted: o.AudioMuted,
VideoMuted: o.VideoMuted,
SharingScreen: o.SharingScreen,
PeerCount: o.PeerCount,
DisconnectType: o.DisconnectType,
StartAlertingTime: StartAlertingTime,
ConnectedTime: ConnectedTime,
DisconnectedTime: DisconnectedTime,
Provider: o.Provider,
PeerId: o.PeerId,
Msids: o.Msids,
Self: o.Self,
Wrapup: o.Wrapup,
AfterCallWork: o.AfterCallWork,
AfterCallWorkRequired: o.AfterCallWorkRequired,
InitialState: o.InitialState,
Alias: (*Alias)(o),
})
}
func (o *Video) UnmarshalJSON(b []byte) error {
var VideoMap map[string]interface{}
err := json.Unmarshal(b, &VideoMap)
if err != nil {
return err
}
if State, ok := VideoMap["state"].(string); ok {
o.State = &State
}
if Id, ok := VideoMap["id"].(string); ok {
o.Id = &Id
}
if Context, ok := VideoMap["context"].(string); ok {
o.Context = &Context
}
if AudioMuted, ok := VideoMap["audioMuted"].(bool); ok {
o.AudioMuted = &AudioMuted
}
if VideoMuted, ok := VideoMap["videoMuted"].(bool); ok {
o.VideoMuted = &VideoMuted
}
if SharingScreen, ok := VideoMap["sharingScreen"].(bool); ok {
o.SharingScreen = &SharingScreen
}
if PeerCount, ok := VideoMap["peerCount"].(float64); ok {
PeerCountInt := int(PeerCount)
o.PeerCount = &PeerCountInt
}
if DisconnectType, ok := VideoMap["disconnectType"].(string); ok {
o.DisconnectType = &DisconnectType
}
if startAlertingTimeString, ok := VideoMap["startAlertingTime"].(string); ok {
StartAlertingTime, _ := time.Parse("2006-01-02T15:04:05.999999Z", startAlertingTimeString)
o.StartAlertingTime = &StartAlertingTime
}
if connectedTimeString, ok := VideoMap["connectedTime"].(string); ok {
ConnectedTime, _ := time.Parse("2006-01-02T15:04:05.999999Z", connectedTimeString)
o.ConnectedTime = &ConnectedTime
}
if disconnectedTimeString, ok := VideoMap["disconnectedTime"].(string); ok {
DisconnectedTime, _ := time.Parse("2006-01-02T15:04:05.999999Z", disconnectedTimeString)
o.DisconnectedTime = &DisconnectedTime
}
if Provider, ok := VideoMap["provider"].(string); ok {
o.Provider = &Provider
}
if PeerId, ok := VideoMap["peerId"].(string); ok {
o.PeerId = &PeerId
}
if Msids, ok := VideoMap["msids"].([]interface{}); ok {
MsidsString, _ := json.Marshal(Msids)
json.Unmarshal(MsidsString, &o.Msids)
}
if Self, ok := VideoMap["self"].(map[string]interface{}); ok {
SelfString, _ := json.Marshal(Self)
json.Unmarshal(SelfString, &o.Self)
}
if Wrapup, ok := VideoMap["wrapup"].(map[string]interface{}); ok {
WrapupString, _ := json.Marshal(Wrapup)
json.Unmarshal(WrapupString, &o.Wrapup)
}
if AfterCallWork, ok := VideoMap["afterCallWork"].(map[string]interface{}); ok {
AfterCallWorkString, _ := json.Marshal(AfterCallWork)
json.Unmarshal(AfterCallWorkString, &o.AfterCallWork)
}
if AfterCallWorkRequired, ok := VideoMap["afterCallWorkRequired"].(bool); ok {
o.AfterCallWorkRequired = &AfterCallWorkRequired
}
if InitialState, ok := VideoMap["initialState"].(string); ok {
o.InitialState = &InitialState
}
return nil
}
// String returns a JSON representation of the model
func (o *Video) String() string {
j, _ := json.Marshal(o)
str, _ := strconv.Unquote(strings.Replace(strconv.Quote(string(j)), `\\u`, `\u`, -1))
return str
}