-
Notifications
You must be signed in to change notification settings - Fork 13
/
call.go
134 lines (74 loc) · 4.48 KB
/
call.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
package platformclientv2
import (
"time"
"encoding/json"
"strconv"
"strings"
)
// Call
type Call struct {
// State - The connection state of this communication.
State *string `json:"state,omitempty"`
// Id - A globally unique identifier for this communication.
Id *string `json:"id,omitempty"`
// Direction - The direction of the call
Direction *string `json:"direction,omitempty"`
// Recording - True if this call is being recorded.
Recording *bool `json:"recording,omitempty"`
// RecordingState - State of recording on this call.
RecordingState *string `json:"recordingState,omitempty"`
// Muted - True if this call is muted so that remote participants can't hear any audio from this end.
Muted *bool `json:"muted,omitempty"`
// Confined - True if this call is held and the person on this side hears hold music.
Confined *bool `json:"confined,omitempty"`
// Held - True if this call is held and the person on this side hears silence.
Held *bool `json:"held,omitempty"`
// RecordingId - A globally unique identifier for the recording associated with this call.
RecordingId *string `json:"recordingId,omitempty"`
// Segments - The time line of the participant's call, divided into activity segments.
Segments *[]Segment `json:"segments,omitempty"`
// ErrorInfo
ErrorInfo *Errorinfo `json:"errorInfo,omitempty"`
// DisconnectType - System defined string indicating what caused the communication to disconnect. Will be null until the communication disconnects.
DisconnectType *string `json:"disconnectType,omitempty"`
// StartHoldTime - The timestamp the call was placed on hold in the cloud clock if the call is currently on hold. Date time is represented as an ISO-8601 string. For example: yyyy-MM-ddTHH:mm:ss[.mmm]Z
StartHoldTime *time.Time `json:"startHoldTime,omitempty"`
// DocumentId - If call is an outbound fax of a document from content management, then this is the id in content management.
DocumentId *string `json:"documentId,omitempty"`
// 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,omitempty"`
// 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,omitempty"`
// 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,omitempty"`
// DisconnectReasons - List of reasons that this call was disconnected. This will be set once the call disconnects.
DisconnectReasons *[]Disconnectreason `json:"disconnectReasons,omitempty"`
// FaxStatus - Extra information on fax transmission.
FaxStatus *Faxstatus `json:"faxStatus,omitempty"`
// Provider - The source provider for the call.
Provider *string `json:"provider,omitempty"`
// ScriptId - The UUID of the script to use.
ScriptId *string `json:"scriptId,omitempty"`
// PeerId - The id of the peer communication corresponding to a matching leg for this communication.
PeerId *string `json:"peerId,omitempty"`
// UuiData - User to User Information (UUI) data managed by SIP session application.
UuiData *string `json:"uuiData,omitempty"`
// Self - Address and name data for a call endpoint.
Self *Address `json:"self,omitempty"`
// Other - Address and name data for a call endpoint.
Other *Address `json:"other,omitempty"`
// Wrapup - Call wrap up or disposition data.
Wrapup *Wrapup `json:"wrapup,omitempty"`
// AfterCallWork - After-call work for the communication.
AfterCallWork *Aftercallwork `json:"afterCallWork,omitempty"`
// AfterCallWorkRequired - Indicates if after-call work is required for a communication. Only used when the ACW Setting is Agent Requested.
AfterCallWorkRequired *bool `json:"afterCallWorkRequired,omitempty"`
// AgentAssistantId - UUID of virtual agent assistant that provide suggestions to the agent participant during the conversation.
AgentAssistantId *string `json:"agentAssistantId,omitempty"`
}
// String returns a JSON representation of the model
func (o *Call) String() string {
j, _ := json.Marshal(o)
str, _ := strconv.Unquote(strings.Replace(strconv.Quote(string(j)), `\\u`, `\u`, -1))
return str
}