-
Notifications
You must be signed in to change notification settings - Fork 13
/
analyticsflow.go
220 lines (140 loc) · 5.84 KB
/
analyticsflow.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
package platformclientv2
import (
"github.com/leekchan/timeutil"
"encoding/json"
"strconv"
"strings"
)
// Analyticsflow
type Analyticsflow struct {
// EndingLanguage - Flow ending language, e.g. en-us
EndingLanguage *string `json:"endingLanguage,omitempty"`
// EntryReason - The particular entry reason for this flow, e.g. an address, userId, or flowId
EntryReason *string `json:"entryReason,omitempty"`
// EntryType - The entry type for this flow, e.g. dnis, dialer, agent, flow, or direct
EntryType *string `json:"entryType,omitempty"`
// ExitReason - The exit reason for this flow, e.g. DISCONNECT
ExitReason *string `json:"exitReason,omitempty"`
// FlowId - The unique identifier of this flow
FlowId *string `json:"flowId,omitempty"`
// FlowName - The name of this flow at the time of flow execution
FlowName *string `json:"flowName,omitempty"`
// FlowType - The type of this flow
FlowType *string `json:"flowType,omitempty"`
// FlowVersion - The version of this flow
FlowVersion *string `json:"flowVersion,omitempty"`
// IssuedCallback - Flag indicating whether the flow issued a callback
IssuedCallback *bool `json:"issuedCallback,omitempty"`
// RecognitionFailureReason - The recognition failure reason causing to exit/disconnect
RecognitionFailureReason *string `json:"recognitionFailureReason,omitempty"`
// StartingLanguage - Flow starting language, e.g. en-us
StartingLanguage *string `json:"startingLanguage,omitempty"`
// TransferTargetAddress - The address of a flow transfer target, e.g. a phone number, an email address, or a queueId
TransferTargetAddress *string `json:"transferTargetAddress,omitempty"`
// TransferTargetName - The name of a flow transfer target
TransferTargetName *string `json:"transferTargetName,omitempty"`
// TransferType - The type of transfer for flows that ended with a transfer
TransferType *string `json:"transferType,omitempty"`
// Outcomes - Flow outcomes
Outcomes *[]Analyticsflowoutcome `json:"outcomes,omitempty"`
}
func (o *Analyticsflow) MarshalJSON() ([]byte, error) {
// Redundant initialization to avoid unused import errors for models with no Time values
_ = timeutil.Timedelta{}
type Alias Analyticsflow
return json.Marshal(&struct {
EndingLanguage *string `json:"endingLanguage,omitempty"`
EntryReason *string `json:"entryReason,omitempty"`
EntryType *string `json:"entryType,omitempty"`
ExitReason *string `json:"exitReason,omitempty"`
FlowId *string `json:"flowId,omitempty"`
FlowName *string `json:"flowName,omitempty"`
FlowType *string `json:"flowType,omitempty"`
FlowVersion *string `json:"flowVersion,omitempty"`
IssuedCallback *bool `json:"issuedCallback,omitempty"`
RecognitionFailureReason *string `json:"recognitionFailureReason,omitempty"`
StartingLanguage *string `json:"startingLanguage,omitempty"`
TransferTargetAddress *string `json:"transferTargetAddress,omitempty"`
TransferTargetName *string `json:"transferTargetName,omitempty"`
TransferType *string `json:"transferType,omitempty"`
Outcomes *[]Analyticsflowoutcome `json:"outcomes,omitempty"`
*Alias
}{
EndingLanguage: o.EndingLanguage,
EntryReason: o.EntryReason,
EntryType: o.EntryType,
ExitReason: o.ExitReason,
FlowId: o.FlowId,
FlowName: o.FlowName,
FlowType: o.FlowType,
FlowVersion: o.FlowVersion,
IssuedCallback: o.IssuedCallback,
RecognitionFailureReason: o.RecognitionFailureReason,
StartingLanguage: o.StartingLanguage,
TransferTargetAddress: o.TransferTargetAddress,
TransferTargetName: o.TransferTargetName,
TransferType: o.TransferType,
Outcomes: o.Outcomes,
Alias: (*Alias)(o),
})
}
func (o *Analyticsflow) UnmarshalJSON(b []byte) error {
var AnalyticsflowMap map[string]interface{}
err := json.Unmarshal(b, &AnalyticsflowMap)
if err != nil {
return err
}
if EndingLanguage, ok := AnalyticsflowMap["endingLanguage"].(string); ok {
o.EndingLanguage = &EndingLanguage
}
if EntryReason, ok := AnalyticsflowMap["entryReason"].(string); ok {
o.EntryReason = &EntryReason
}
if EntryType, ok := AnalyticsflowMap["entryType"].(string); ok {
o.EntryType = &EntryType
}
if ExitReason, ok := AnalyticsflowMap["exitReason"].(string); ok {
o.ExitReason = &ExitReason
}
if FlowId, ok := AnalyticsflowMap["flowId"].(string); ok {
o.FlowId = &FlowId
}
if FlowName, ok := AnalyticsflowMap["flowName"].(string); ok {
o.FlowName = &FlowName
}
if FlowType, ok := AnalyticsflowMap["flowType"].(string); ok {
o.FlowType = &FlowType
}
if FlowVersion, ok := AnalyticsflowMap["flowVersion"].(string); ok {
o.FlowVersion = &FlowVersion
}
if IssuedCallback, ok := AnalyticsflowMap["issuedCallback"].(bool); ok {
o.IssuedCallback = &IssuedCallback
}
if RecognitionFailureReason, ok := AnalyticsflowMap["recognitionFailureReason"].(string); ok {
o.RecognitionFailureReason = &RecognitionFailureReason
}
if StartingLanguage, ok := AnalyticsflowMap["startingLanguage"].(string); ok {
o.StartingLanguage = &StartingLanguage
}
if TransferTargetAddress, ok := AnalyticsflowMap["transferTargetAddress"].(string); ok {
o.TransferTargetAddress = &TransferTargetAddress
}
if TransferTargetName, ok := AnalyticsflowMap["transferTargetName"].(string); ok {
o.TransferTargetName = &TransferTargetName
}
if TransferType, ok := AnalyticsflowMap["transferType"].(string); ok {
o.TransferType = &TransferType
}
if Outcomes, ok := AnalyticsflowMap["outcomes"].([]interface{}); ok {
OutcomesString, _ := json.Marshal(Outcomes)
json.Unmarshal(OutcomesString, &o.Outcomes)
}
return nil
}
// String returns a JSON representation of the model
func (o *Analyticsflow) String() string {
j, _ := json.Marshal(o)
str, _ := strconv.Unquote(strings.Replace(strconv.Quote(string(j)), `\\u`, `\u`, -1))
return str
}