-
Notifications
You must be signed in to change notification settings - Fork 13
/
conversationchateventtopicchatmediaparticipant.go
162 lines (88 loc) · 3.15 KB
/
conversationchateventtopicchatmediaparticipant.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
package platformclientv2
import (
"time"
"encoding/json"
"strconv"
"strings"
)
// Conversationchateventtopicchatmediaparticipant
type Conversationchateventtopicchatmediaparticipant struct {
// Id
Id *string `json:"id,omitempty"`
// Name
Name *string `json:"name,omitempty"`
// Address
Address *string `json:"address,omitempty"`
// StartTime
StartTime *time.Time `json:"startTime,omitempty"`
// ConnectedTime
ConnectedTime *time.Time `json:"connectedTime,omitempty"`
// EndTime
EndTime *time.Time `json:"endTime,omitempty"`
// StartHoldTime
StartHoldTime *time.Time `json:"startHoldTime,omitempty"`
// Purpose
Purpose *string `json:"purpose,omitempty"`
// State
State *string `json:"state,omitempty"`
// Direction
Direction *string `json:"direction,omitempty"`
// DisconnectType
DisconnectType *string `json:"disconnectType,omitempty"`
// Held
Held *bool `json:"held,omitempty"`
// WrapupRequired
WrapupRequired *bool `json:"wrapupRequired,omitempty"`
// WrapupPrompt
WrapupPrompt *string `json:"wrapupPrompt,omitempty"`
// User
User *Conversationchateventtopicurireference `json:"user,omitempty"`
// Queue
Queue *Conversationchateventtopicurireference `json:"queue,omitempty"`
// Team
Team *Conversationchateventtopicurireference `json:"team,omitempty"`
// Attributes
Attributes *map[string]string `json:"attributes,omitempty"`
// ErrorInfo
ErrorInfo *Conversationchateventtopicerrorbody `json:"errorInfo,omitempty"`
// Script
Script *Conversationchateventtopicurireference `json:"script,omitempty"`
// WrapupTimeoutMs
WrapupTimeoutMs *int `json:"wrapupTimeoutMs,omitempty"`
// WrapupSkipped
WrapupSkipped *bool `json:"wrapupSkipped,omitempty"`
// AlertingTimeoutMs
AlertingTimeoutMs *int `json:"alertingTimeoutMs,omitempty"`
// Provider
Provider *string `json:"provider,omitempty"`
// ExternalContact
ExternalContact *Conversationchateventtopicurireference `json:"externalContact,omitempty"`
// ExternalOrganization
ExternalOrganization *Conversationchateventtopicurireference `json:"externalOrganization,omitempty"`
// Wrapup
Wrapup *Conversationchateventtopicwrapup `json:"wrapup,omitempty"`
// ConversationRoutingData
ConversationRoutingData *Conversationchateventtopicconversationroutingdata `json:"conversationRoutingData,omitempty"`
// Peer
Peer *string `json:"peer,omitempty"`
// ScreenRecordingState
ScreenRecordingState *string `json:"screenRecordingState,omitempty"`
// FlaggedReason
FlaggedReason *string `json:"flaggedReason,omitempty"`
// JourneyContext
JourneyContext *Conversationchateventtopicjourneycontext `json:"journeyContext,omitempty"`
// StartAcwTime
StartAcwTime *time.Time `json:"startAcwTime,omitempty"`
// EndAcwTime
EndAcwTime *time.Time `json:"endAcwTime,omitempty"`
// RoomId
RoomId *string `json:"roomId,omitempty"`
// AvatarImageUrl
AvatarImageUrl *string `json:"avatarImageUrl,omitempty"`
}
// String returns a JSON representation of the model
func (o *Conversationchateventtopicchatmediaparticipant) String() string {
j, _ := json.Marshal(o)
str, _ := strconv.Unquote(strings.Replace(strconv.Quote(string(j)), `\\u`, `\u`, -1))
return str
}