-
Notifications
You must be signed in to change notification settings - Fork 13
/
conversation.go
218 lines (144 loc) · 6.14 KB
/
conversation.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
package platformclientv2
import (
"time"
"github.com/leekchan/timeutil"
"encoding/json"
"strconv"
"strings"
)
// Conversation
type Conversation struct {
// Id - The globally unique identifier for the object.
Id *string `json:"id,omitempty"`
// Name
Name *string `json:"name,omitempty"`
// ExternalTag - The external tag associated with the conversation.
ExternalTag *string `json:"externalTag,omitempty"`
// StartTime - The time when the conversation started. This will be the time when the first participant joined the conversation. Date time is represented as an ISO-8601 string. For example: yyyy-MM-ddTHH:mm:ss[.mmm]Z
StartTime *time.Time `json:"startTime,omitempty"`
// EndTime - The time when the conversation ended. This will be the time when the last participant left the conversation, or null when the conversation is still active. Date time is represented as an ISO-8601 string. For example: yyyy-MM-ddTHH:mm:ss[.mmm]Z
EndTime *time.Time `json:"endTime,omitempty"`
// Address - The address of the conversation as seen from an external participant. For phone calls this will be the DNIS for inbound calls and the ANI for outbound calls. For other media types this will be the address of the destination participant for inbound and the address of the initiating participant for outbound.
Address *string `json:"address,omitempty"`
// Participants - The list of all participants in the conversation.
Participants *[]Participant `json:"participants,omitempty"`
// ConversationIds - A list of conversations to merge into this conversation to create a conference. This field is null except when being used to create a conference.
ConversationIds *[]string `json:"conversationIds,omitempty"`
// MaxParticipants - If this is a conference conversation, then this field indicates the maximum number of participants allowed to participant in the conference.
MaxParticipants *int `json:"maxParticipants,omitempty"`
// RecordingState - On update, 'paused' initiates a secure pause, 'active' resumes any paused recordings; otherwise indicates state of conversation recording.
RecordingState *string `json:"recordingState,omitempty"`
// State - The conversation's state
State *string `json:"state,omitempty"`
// Divisions - Identifiers of divisions associated with this conversation
Divisions *[]Conversationdivisionmembership `json:"divisions,omitempty"`
// SelfUri - The URI for this object
SelfUri *string `json:"selfUri,omitempty"`
}
func (o *Conversation) MarshalJSON() ([]byte, error) {
// Redundant initialization to avoid unused import errors for models with no Time values
_ = timeutil.Timedelta{}
type Alias Conversation
StartTime := new(string)
if o.StartTime != nil {
*StartTime = timeutil.Strftime(o.StartTime, "%Y-%m-%dT%H:%M:%S.%fZ")
} else {
StartTime = nil
}
EndTime := new(string)
if o.EndTime != nil {
*EndTime = timeutil.Strftime(o.EndTime, "%Y-%m-%dT%H:%M:%S.%fZ")
} else {
EndTime = nil
}
return json.Marshal(&struct {
Id *string `json:"id,omitempty"`
Name *string `json:"name,omitempty"`
ExternalTag *string `json:"externalTag,omitempty"`
StartTime *string `json:"startTime,omitempty"`
EndTime *string `json:"endTime,omitempty"`
Address *string `json:"address,omitempty"`
Participants *[]Participant `json:"participants,omitempty"`
ConversationIds *[]string `json:"conversationIds,omitempty"`
MaxParticipants *int `json:"maxParticipants,omitempty"`
RecordingState *string `json:"recordingState,omitempty"`
State *string `json:"state,omitempty"`
Divisions *[]Conversationdivisionmembership `json:"divisions,omitempty"`
SelfUri *string `json:"selfUri,omitempty"`
*Alias
}{
Id: o.Id,
Name: o.Name,
ExternalTag: o.ExternalTag,
StartTime: StartTime,
EndTime: EndTime,
Address: o.Address,
Participants: o.Participants,
ConversationIds: o.ConversationIds,
MaxParticipants: o.MaxParticipants,
RecordingState: o.RecordingState,
State: o.State,
Divisions: o.Divisions,
SelfUri: o.SelfUri,
Alias: (*Alias)(o),
})
}
func (o *Conversation) UnmarshalJSON(b []byte) error {
var ConversationMap map[string]interface{}
err := json.Unmarshal(b, &ConversationMap)
if err != nil {
return err
}
if Id, ok := ConversationMap["id"].(string); ok {
o.Id = &Id
}
if Name, ok := ConversationMap["name"].(string); ok {
o.Name = &Name
}
if ExternalTag, ok := ConversationMap["externalTag"].(string); ok {
o.ExternalTag = &ExternalTag
}
if startTimeString, ok := ConversationMap["startTime"].(string); ok {
StartTime, _ := time.Parse("2006-01-02T15:04:05.999999Z", startTimeString)
o.StartTime = &StartTime
}
if endTimeString, ok := ConversationMap["endTime"].(string); ok {
EndTime, _ := time.Parse("2006-01-02T15:04:05.999999Z", endTimeString)
o.EndTime = &EndTime
}
if Address, ok := ConversationMap["address"].(string); ok {
o.Address = &Address
}
if Participants, ok := ConversationMap["participants"].([]interface{}); ok {
ParticipantsString, _ := json.Marshal(Participants)
json.Unmarshal(ParticipantsString, &o.Participants)
}
if ConversationIds, ok := ConversationMap["conversationIds"].([]interface{}); ok {
ConversationIdsString, _ := json.Marshal(ConversationIds)
json.Unmarshal(ConversationIdsString, &o.ConversationIds)
}
if MaxParticipants, ok := ConversationMap["maxParticipants"].(float64); ok {
MaxParticipantsInt := int(MaxParticipants)
o.MaxParticipants = &MaxParticipantsInt
}
if RecordingState, ok := ConversationMap["recordingState"].(string); ok {
o.RecordingState = &RecordingState
}
if State, ok := ConversationMap["state"].(string); ok {
o.State = &State
}
if Divisions, ok := ConversationMap["divisions"].([]interface{}); ok {
DivisionsString, _ := json.Marshal(Divisions)
json.Unmarshal(DivisionsString, &o.Divisions)
}
if SelfUri, ok := ConversationMap["selfUri"].(string); ok {
o.SelfUri = &SelfUri
}
return nil
}
// String returns a JSON representation of the model
func (o *Conversation) String() string {
j, _ := json.Marshal(o)
str, _ := strconv.Unquote(strings.Replace(strconv.Quote(string(j)), `\\u`, `\u`, -1))
return str
}