-
Notifications
You must be signed in to change notification settings - Fork 13
/
analyticsparticipant.go
161 lines (106 loc) · 4.24 KB
/
analyticsparticipant.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
package platformclientv2
import (
"github.com/leekchan/timeutil"
"encoding/json"
"strconv"
"strings"
)
// Analyticsparticipant
type Analyticsparticipant struct {
// ExternalContactId - External contact identifier
ExternalContactId *string `json:"externalContactId,omitempty"`
// ExternalOrganizationId - External organization identifier
ExternalOrganizationId *string `json:"externalOrganizationId,omitempty"`
// FlaggedReason - Reason for which participant flagged conversation
FlaggedReason *string `json:"flaggedReason,omitempty"`
// ParticipantId - Unique identifier for the participant
ParticipantId *string `json:"participantId,omitempty"`
// ParticipantName - A human readable name identifying the participant
ParticipantName *string `json:"participantName,omitempty"`
// Purpose - The participant's purpose
Purpose *string `json:"purpose,omitempty"`
// TeamId - The team ID the user is a member of
TeamId *string `json:"teamId,omitempty"`
// UserId - Unique identifier for the user
UserId *string `json:"userId,omitempty"`
// Sessions - List of sessions associated to this participant
Sessions *[]Analyticssession `json:"sessions,omitempty"`
// Attributes - List of attributes associated to this participant
Attributes *map[string]string `json:"attributes,omitempty"`
}
func (o *Analyticsparticipant) MarshalJSON() ([]byte, error) {
// Redundant initialization to avoid unused import errors for models with no Time values
_ = timeutil.Timedelta{}
type Alias Analyticsparticipant
return json.Marshal(&struct {
ExternalContactId *string `json:"externalContactId,omitempty"`
ExternalOrganizationId *string `json:"externalOrganizationId,omitempty"`
FlaggedReason *string `json:"flaggedReason,omitempty"`
ParticipantId *string `json:"participantId,omitempty"`
ParticipantName *string `json:"participantName,omitempty"`
Purpose *string `json:"purpose,omitempty"`
TeamId *string `json:"teamId,omitempty"`
UserId *string `json:"userId,omitempty"`
Sessions *[]Analyticssession `json:"sessions,omitempty"`
Attributes *map[string]string `json:"attributes,omitempty"`
*Alias
}{
ExternalContactId: o.ExternalContactId,
ExternalOrganizationId: o.ExternalOrganizationId,
FlaggedReason: o.FlaggedReason,
ParticipantId: o.ParticipantId,
ParticipantName: o.ParticipantName,
Purpose: o.Purpose,
TeamId: o.TeamId,
UserId: o.UserId,
Sessions: o.Sessions,
Attributes: o.Attributes,
Alias: (*Alias)(o),
})
}
func (o *Analyticsparticipant) UnmarshalJSON(b []byte) error {
var AnalyticsparticipantMap map[string]interface{}
err := json.Unmarshal(b, &AnalyticsparticipantMap)
if err != nil {
return err
}
if ExternalContactId, ok := AnalyticsparticipantMap["externalContactId"].(string); ok {
o.ExternalContactId = &ExternalContactId
}
if ExternalOrganizationId, ok := AnalyticsparticipantMap["externalOrganizationId"].(string); ok {
o.ExternalOrganizationId = &ExternalOrganizationId
}
if FlaggedReason, ok := AnalyticsparticipantMap["flaggedReason"].(string); ok {
o.FlaggedReason = &FlaggedReason
}
if ParticipantId, ok := AnalyticsparticipantMap["participantId"].(string); ok {
o.ParticipantId = &ParticipantId
}
if ParticipantName, ok := AnalyticsparticipantMap["participantName"].(string); ok {
o.ParticipantName = &ParticipantName
}
if Purpose, ok := AnalyticsparticipantMap["purpose"].(string); ok {
o.Purpose = &Purpose
}
if TeamId, ok := AnalyticsparticipantMap["teamId"].(string); ok {
o.TeamId = &TeamId
}
if UserId, ok := AnalyticsparticipantMap["userId"].(string); ok {
o.UserId = &UserId
}
if Sessions, ok := AnalyticsparticipantMap["sessions"].([]interface{}); ok {
SessionsString, _ := json.Marshal(Sessions)
json.Unmarshal(SessionsString, &o.Sessions)
}
if Attributes, ok := AnalyticsparticipantMap["attributes"].(map[string]interface{}); ok {
AttributesString, _ := json.Marshal(Attributes)
json.Unmarshal(AttributesString, &o.Attributes)
}
return nil
}
// String returns a JSON representation of the model
func (o *Analyticsparticipant) String() string {
j, _ := json.Marshal(o)
str, _ := strconv.Unquote(strings.Replace(strconv.Quote(string(j)), `\\u`, `\u`, -1))
return str
}