-
Notifications
You must be signed in to change notification settings - Fork 13
/
station.go
223 lines (143 loc) · 5.64 KB
/
station.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
package platformclientv2
import (
"github.com/leekchan/timeutil"
"encoding/json"
"strconv"
"strings"
)
// Station
type Station struct {
// Id - The globally unique identifier for the object.
Id *string `json:"id,omitempty"`
// Name
Name *string `json:"name,omitempty"`
// Description
Description *string `json:"description,omitempty"`
// Status
Status *string `json:"status,omitempty"`
// UserId - The Id of the user currently logged in and associated with the station.
UserId *string `json:"userId,omitempty"`
// WebRtcUserId - The Id of the user configured for the station if it is of type inin_webrtc_softphone. Empty if station type is not inin_webrtc_softphone.
WebRtcUserId *string `json:"webRtcUserId,omitempty"`
// PrimaryEdge
PrimaryEdge *Domainentityref `json:"primaryEdge,omitempty"`
// SecondaryEdge
SecondaryEdge *Domainentityref `json:"secondaryEdge,omitempty"`
// VarType
VarType *string `json:"type,omitempty"`
// LineAppearanceId
LineAppearanceId *string `json:"lineAppearanceId,omitempty"`
// WebRtcMediaDscp - The default or configured value of media dscp for the station. Empty if station type is not inin_webrtc_softphone.
WebRtcMediaDscp *int `json:"webRtcMediaDscp,omitempty"`
// WebRtcPersistentEnabled - The default or configured value of persistent connection setting for the station. Empty if station type is not inin_webrtc_softphone.
WebRtcPersistentEnabled *bool `json:"webRtcPersistentEnabled,omitempty"`
// WebRtcForceTurn - Whether the station is configured to require TURN for routing WebRTC calls. Empty if station type is not inin_webrtc_softphone.
WebRtcForceTurn *bool `json:"webRtcForceTurn,omitempty"`
// WebRtcCallAppearances - The number of call appearances on the station.
WebRtcCallAppearances *int `json:"webRtcCallAppearances,omitempty"`
// SelfUri - The URI for this object
SelfUri *string `json:"selfUri,omitempty"`
}
func (o *Station) MarshalJSON() ([]byte, error) {
// Redundant initialization to avoid unused import errors for models with no Time values
_ = timeutil.Timedelta{}
type Alias Station
return json.Marshal(&struct {
Id *string `json:"id,omitempty"`
Name *string `json:"name,omitempty"`
Description *string `json:"description,omitempty"`
Status *string `json:"status,omitempty"`
UserId *string `json:"userId,omitempty"`
WebRtcUserId *string `json:"webRtcUserId,omitempty"`
PrimaryEdge *Domainentityref `json:"primaryEdge,omitempty"`
SecondaryEdge *Domainentityref `json:"secondaryEdge,omitempty"`
VarType *string `json:"type,omitempty"`
LineAppearanceId *string `json:"lineAppearanceId,omitempty"`
WebRtcMediaDscp *int `json:"webRtcMediaDscp,omitempty"`
WebRtcPersistentEnabled *bool `json:"webRtcPersistentEnabled,omitempty"`
WebRtcForceTurn *bool `json:"webRtcForceTurn,omitempty"`
WebRtcCallAppearances *int `json:"webRtcCallAppearances,omitempty"`
SelfUri *string `json:"selfUri,omitempty"`
*Alias
}{
Id: o.Id,
Name: o.Name,
Description: o.Description,
Status: o.Status,
UserId: o.UserId,
WebRtcUserId: o.WebRtcUserId,
PrimaryEdge: o.PrimaryEdge,
SecondaryEdge: o.SecondaryEdge,
VarType: o.VarType,
LineAppearanceId: o.LineAppearanceId,
WebRtcMediaDscp: o.WebRtcMediaDscp,
WebRtcPersistentEnabled: o.WebRtcPersistentEnabled,
WebRtcForceTurn: o.WebRtcForceTurn,
WebRtcCallAppearances: o.WebRtcCallAppearances,
SelfUri: o.SelfUri,
Alias: (*Alias)(o),
})
}
func (o *Station) UnmarshalJSON(b []byte) error {
var StationMap map[string]interface{}
err := json.Unmarshal(b, &StationMap)
if err != nil {
return err
}
if Id, ok := StationMap["id"].(string); ok {
o.Id = &Id
}
if Name, ok := StationMap["name"].(string); ok {
o.Name = &Name
}
if Description, ok := StationMap["description"].(string); ok {
o.Description = &Description
}
if Status, ok := StationMap["status"].(string); ok {
o.Status = &Status
}
if UserId, ok := StationMap["userId"].(string); ok {
o.UserId = &UserId
}
if WebRtcUserId, ok := StationMap["webRtcUserId"].(string); ok {
o.WebRtcUserId = &WebRtcUserId
}
if PrimaryEdge, ok := StationMap["primaryEdge"].(map[string]interface{}); ok {
PrimaryEdgeString, _ := json.Marshal(PrimaryEdge)
json.Unmarshal(PrimaryEdgeString, &o.PrimaryEdge)
}
if SecondaryEdge, ok := StationMap["secondaryEdge"].(map[string]interface{}); ok {
SecondaryEdgeString, _ := json.Marshal(SecondaryEdge)
json.Unmarshal(SecondaryEdgeString, &o.SecondaryEdge)
}
if VarType, ok := StationMap["type"].(string); ok {
o.VarType = &VarType
}
if LineAppearanceId, ok := StationMap["lineAppearanceId"].(string); ok {
o.LineAppearanceId = &LineAppearanceId
}
if WebRtcMediaDscp, ok := StationMap["webRtcMediaDscp"].(float64); ok {
WebRtcMediaDscpInt := int(WebRtcMediaDscp)
o.WebRtcMediaDscp = &WebRtcMediaDscpInt
}
if WebRtcPersistentEnabled, ok := StationMap["webRtcPersistentEnabled"].(bool); ok {
o.WebRtcPersistentEnabled = &WebRtcPersistentEnabled
}
if WebRtcForceTurn, ok := StationMap["webRtcForceTurn"].(bool); ok {
o.WebRtcForceTurn = &WebRtcForceTurn
}
if WebRtcCallAppearances, ok := StationMap["webRtcCallAppearances"].(float64); ok {
WebRtcCallAppearancesInt := int(WebRtcCallAppearances)
o.WebRtcCallAppearances = &WebRtcCallAppearancesInt
}
if SelfUri, ok := StationMap["selfUri"].(string); ok {
o.SelfUri = &SelfUri
}
return nil
}
// String returns a JSON representation of the model
func (o *Station) String() string {
j, _ := json.Marshal(o)
str, _ := strconv.Unquote(strings.Replace(strconv.Quote(string(j)), `\\u`, `\u`, -1))
return str
}