forked from MyPureCloud/platform-client-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dialeraction.go
150 lines (100 loc) · 5.48 KB
/
dialeraction.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
package platformclientv2
import (
"github.com/leekchan/timeutil"
"encoding/json"
"strconv"
"strings"
)
// Dialeraction
type Dialeraction struct {
// VarType - The type of this DialerAction.
VarType *string `json:"type,omitempty"`
// ActionTypeName - Additional type specification for this DialerAction.
ActionTypeName *string `json:"actionTypeName,omitempty"`
// UpdateOption - Specifies how a contact attribute should be updated. Required for MODIFY_CONTACT_ATTRIBUTE.
UpdateOption *string `json:"updateOption"`
// Properties - A map of key-value pairs pertinent to the DialerAction. Different types of DialerActions require different properties. MODIFY_CONTACT_ATTRIBUTE with an updateOption of SET takes a contact column as the key and accepts any value. SCHEDULE_CALLBACK takes a key 'callbackOffset' that specifies how far in the future the callback should be scheduled, in minutes. SET_CALLER_ID takes two keys: 'callerAddress', which should be the caller id phone number, and 'callerName'. For either key, you can also specify a column on the contact to get the value from. To do this, specify 'contact.Column', where 'Column' is the name of the contact column from which to get the value. SET_SKILLS takes a key 'skills' with an array of skill ids wrapped into a string (Example: {'skills': '['skillIdHere']'} ).
Properties *map[string]string `json:"properties"`
// DataAction - The Data Action to use for this action. Required for a dataActionBehavior.
DataAction *Domainentityref `json:"dataAction"`
// ContactColumnToDataActionFieldMappings - A list of mappings defining which contact data fields will be passed to which data action input fields for this condition. Valid for a dataActionBehavior.
ContactColumnToDataActionFieldMappings *[]Contactcolumntodataactionfieldmapping `json:"contactColumnToDataActionFieldMappings"`
// ContactIdField - The input field from the data action that the contactId will be passed to for this condition. Valid for a dataActionBehavior.
ContactIdField *string `json:"contactIdField"`
// CallAnalysisResultField - The input field from the data action that the callAnalysisResult will be passed to for this condition. Valid for a wrapup dataActionBehavior.
CallAnalysisResultField *string `json:"callAnalysisResultField"`
// AgentWrapupField - The input field from the data action that the agentWrapup will be passed to for this condition. Valid for a wrapup dataActionBehavior.
AgentWrapupField *string `json:"agentWrapupField"`
}
func (o *Dialeraction) MarshalJSON() ([]byte, error) {
// Redundant initialization to avoid unused import errors for models with no Time values
_ = timeutil.Timedelta{}
type Alias Dialeraction
return json.Marshal(&struct {
VarType *string `json:"type,omitempty"`
ActionTypeName *string `json:"actionTypeName,omitempty"`
UpdateOption *string `json:"updateOption"`
Properties *map[string]string `json:"properties"`
DataAction *Domainentityref `json:"dataAction"`
ContactColumnToDataActionFieldMappings *[]Contactcolumntodataactionfieldmapping `json:"contactColumnToDataActionFieldMappings"`
ContactIdField *string `json:"contactIdField"`
CallAnalysisResultField *string `json:"callAnalysisResultField"`
AgentWrapupField *string `json:"agentWrapupField"`
*Alias
}{
VarType: o.VarType,
ActionTypeName: o.ActionTypeName,
UpdateOption: o.UpdateOption,
Properties: o.Properties,
DataAction: o.DataAction,
ContactColumnToDataActionFieldMappings: o.ContactColumnToDataActionFieldMappings,
ContactIdField: o.ContactIdField,
CallAnalysisResultField: o.CallAnalysisResultField,
AgentWrapupField: o.AgentWrapupField,
Alias: (*Alias)(o),
})
}
func (o *Dialeraction) UnmarshalJSON(b []byte) error {
var DialeractionMap map[string]interface{}
err := json.Unmarshal(b, &DialeractionMap)
if err != nil {
return err
}
if VarType, ok := DialeractionMap["type"].(string); ok {
o.VarType = &VarType
}
if ActionTypeName, ok := DialeractionMap["actionTypeName"].(string); ok {
o.ActionTypeName = &ActionTypeName
}
if UpdateOption, ok := DialeractionMap["updateOption"].(string); ok {
o.UpdateOption = &UpdateOption
}
if Properties, ok := DialeractionMap["properties"].(map[string]interface{}); ok {
PropertiesString, _ := json.Marshal(Properties)
json.Unmarshal(PropertiesString, &o.Properties)
}
if DataAction, ok := DialeractionMap["dataAction"].(map[string]interface{}); ok {
DataActionString, _ := json.Marshal(DataAction)
json.Unmarshal(DataActionString, &o.DataAction)
}
if ContactColumnToDataActionFieldMappings, ok := DialeractionMap["contactColumnToDataActionFieldMappings"].([]interface{}); ok {
ContactColumnToDataActionFieldMappingsString, _ := json.Marshal(ContactColumnToDataActionFieldMappings)
json.Unmarshal(ContactColumnToDataActionFieldMappingsString, &o.ContactColumnToDataActionFieldMappings)
}
if ContactIdField, ok := DialeractionMap["contactIdField"].(string); ok {
o.ContactIdField = &ContactIdField
}
if CallAnalysisResultField, ok := DialeractionMap["callAnalysisResultField"].(string); ok {
o.CallAnalysisResultField = &CallAnalysisResultField
}
if AgentWrapupField, ok := DialeractionMap["agentWrapupField"].(string); ok {
o.AgentWrapupField = &AgentWrapupField
}
return nil
}
// String returns a JSON representation of the model
func (o *Dialeraction) String() string {
j, _ := json.Marshal(o)
str, _ := strconv.Unquote(strings.Replace(strconv.Quote(string(j)), `\\u`, `\u`, -1))
return str
}