-
Notifications
You must be signed in to change notification settings - Fork 13
/
wrapup.go
135 lines (93 loc) · 3.17 KB
/
wrapup.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
package platformclientv2
import (
"time"
"github.com/leekchan/timeutil"
"encoding/json"
"strconv"
"strings"
)
// Wrapup
type Wrapup struct {
// Code - The user configured wrap up code id.
Code *string `json:"code,omitempty"`
// Name - The user configured wrap up code name.
Name *string `json:"name,omitempty"`
// Notes - Text entered by the agent to describe the call or disposition.
Notes *string `json:"notes,omitempty"`
// Tags - List of tags selected by the agent to describe the call or disposition.
Tags *[]string `json:"tags,omitempty"`
// DurationSeconds - The length of time in seconds that the agent spent doing after call work.
DurationSeconds *int `json:"durationSeconds,omitempty"`
// EndTime - The timestamp when the wrapup was finished. Date time is represented as an ISO-8601 string. For example: yyyy-MM-ddTHH:mm:ss[.mmm]Z
EndTime *time.Time `json:"endTime,omitempty"`
// Provisional - Indicates if this is a pending save and should not require a code to be specified. This allows someone to save some temporary wrapup that will be used later.
Provisional *bool `json:"provisional,omitempty"`
}
func (o *Wrapup) MarshalJSON() ([]byte, error) {
// Redundant initialization to avoid unused import errors for models with no Time values
_ = timeutil.Timedelta{}
type Alias Wrapup
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 {
Code *string `json:"code,omitempty"`
Name *string `json:"name,omitempty"`
Notes *string `json:"notes,omitempty"`
Tags *[]string `json:"tags,omitempty"`
DurationSeconds *int `json:"durationSeconds,omitempty"`
EndTime *string `json:"endTime,omitempty"`
Provisional *bool `json:"provisional,omitempty"`
*Alias
}{
Code: o.Code,
Name: o.Name,
Notes: o.Notes,
Tags: o.Tags,
DurationSeconds: o.DurationSeconds,
EndTime: EndTime,
Provisional: o.Provisional,
Alias: (*Alias)(o),
})
}
func (o *Wrapup) UnmarshalJSON(b []byte) error {
var WrapupMap map[string]interface{}
err := json.Unmarshal(b, &WrapupMap)
if err != nil {
return err
}
if Code, ok := WrapupMap["code"].(string); ok {
o.Code = &Code
}
if Name, ok := WrapupMap["name"].(string); ok {
o.Name = &Name
}
if Notes, ok := WrapupMap["notes"].(string); ok {
o.Notes = &Notes
}
if Tags, ok := WrapupMap["tags"].([]interface{}); ok {
TagsString, _ := json.Marshal(Tags)
json.Unmarshal(TagsString, &o.Tags)
}
if DurationSeconds, ok := WrapupMap["durationSeconds"].(float64); ok {
DurationSecondsInt := int(DurationSeconds)
o.DurationSeconds = &DurationSecondsInt
}
if endTimeString, ok := WrapupMap["endTime"].(string); ok {
EndTime, _ := time.Parse("2006-01-02T15:04:05.999999Z", endTimeString)
o.EndTime = &EndTime
}
if Provisional, ok := WrapupMap["provisional"].(bool); ok {
o.Provisional = &Provisional
}
return nil
}
// String returns a JSON representation of the model
func (o *Wrapup) String() string {
j, _ := json.Marshal(o)
str, _ := strconv.Unquote(strings.Replace(strconv.Quote(string(j)), `\\u`, `\u`, -1))
return str
}