-
Notifications
You must be signed in to change notification settings - Fork 13
/
groupcreate.go
222 lines (145 loc) · 4.93 KB
/
groupcreate.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
221
222
package platformclientv2
import (
"time"
"github.com/leekchan/timeutil"
"encoding/json"
"strconv"
"strings"
)
// Groupcreate
type Groupcreate struct {
// Id - The globally unique identifier for the object.
Id *string `json:"id,omitempty"`
// Name - The group name.
Name *string `json:"name,omitempty"`
// Description
Description *string `json:"description,omitempty"`
// DateModified - Last modified date/time. Date time is represented as an ISO-8601 string. For example: yyyy-MM-ddTHH:mm:ss[.mmm]Z
DateModified *time.Time `json:"dateModified,omitempty"`
// MemberCount - Number of members.
MemberCount *int `json:"memberCount,omitempty"`
// State - Active, inactive, or deleted state.
State *string `json:"state,omitempty"`
// Version - Current version for this resource.
Version *int `json:"version,omitempty"`
// VarType - Type of group.
VarType *string `json:"type,omitempty"`
// Images
Images *[]Userimage `json:"images,omitempty"`
// Addresses
Addresses *[]Groupcontact `json:"addresses,omitempty"`
// RulesVisible - Are membership rules visible to the person requesting to view the group
RulesVisible *bool `json:"rulesVisible,omitempty"`
// Visibility - Who can view this group
Visibility *string `json:"visibility,omitempty"`
// OwnerIds - Owners of the group
OwnerIds *[]string `json:"ownerIds,omitempty"`
// SelfUri - The URI for this object
SelfUri *string `json:"selfUri,omitempty"`
}
func (o *Groupcreate) MarshalJSON() ([]byte, error) {
// Redundant initialization to avoid unused import errors for models with no Time values
_ = timeutil.Timedelta{}
type Alias Groupcreate
DateModified := new(string)
if o.DateModified != nil {
*DateModified = timeutil.Strftime(o.DateModified, "%Y-%m-%dT%H:%M:%S.%fZ")
} else {
DateModified = nil
}
return json.Marshal(&struct {
Id *string `json:"id,omitempty"`
Name *string `json:"name,omitempty"`
Description *string `json:"description,omitempty"`
DateModified *string `json:"dateModified,omitempty"`
MemberCount *int `json:"memberCount,omitempty"`
State *string `json:"state,omitempty"`
Version *int `json:"version,omitempty"`
VarType *string `json:"type,omitempty"`
Images *[]Userimage `json:"images,omitempty"`
Addresses *[]Groupcontact `json:"addresses,omitempty"`
RulesVisible *bool `json:"rulesVisible,omitempty"`
Visibility *string `json:"visibility,omitempty"`
OwnerIds *[]string `json:"ownerIds,omitempty"`
SelfUri *string `json:"selfUri,omitempty"`
*Alias
}{
Id: o.Id,
Name: o.Name,
Description: o.Description,
DateModified: DateModified,
MemberCount: o.MemberCount,
State: o.State,
Version: o.Version,
VarType: o.VarType,
Images: o.Images,
Addresses: o.Addresses,
RulesVisible: o.RulesVisible,
Visibility: o.Visibility,
OwnerIds: o.OwnerIds,
SelfUri: o.SelfUri,
Alias: (*Alias)(o),
})
}
func (o *Groupcreate) UnmarshalJSON(b []byte) error {
var GroupcreateMap map[string]interface{}
err := json.Unmarshal(b, &GroupcreateMap)
if err != nil {
return err
}
if Id, ok := GroupcreateMap["id"].(string); ok {
o.Id = &Id
}
if Name, ok := GroupcreateMap["name"].(string); ok {
o.Name = &Name
}
if Description, ok := GroupcreateMap["description"].(string); ok {
o.Description = &Description
}
if dateModifiedString, ok := GroupcreateMap["dateModified"].(string); ok {
DateModified, _ := time.Parse("2006-01-02T15:04:05.999999Z", dateModifiedString)
o.DateModified = &DateModified
}
if MemberCount, ok := GroupcreateMap["memberCount"].(float64); ok {
MemberCountInt := int(MemberCount)
o.MemberCount = &MemberCountInt
}
if State, ok := GroupcreateMap["state"].(string); ok {
o.State = &State
}
if Version, ok := GroupcreateMap["version"].(float64); ok {
VersionInt := int(Version)
o.Version = &VersionInt
}
if VarType, ok := GroupcreateMap["type"].(string); ok {
o.VarType = &VarType
}
if Images, ok := GroupcreateMap["images"].([]interface{}); ok {
ImagesString, _ := json.Marshal(Images)
json.Unmarshal(ImagesString, &o.Images)
}
if Addresses, ok := GroupcreateMap["addresses"].([]interface{}); ok {
AddressesString, _ := json.Marshal(Addresses)
json.Unmarshal(AddressesString, &o.Addresses)
}
if RulesVisible, ok := GroupcreateMap["rulesVisible"].(bool); ok {
o.RulesVisible = &RulesVisible
}
if Visibility, ok := GroupcreateMap["visibility"].(string); ok {
o.Visibility = &Visibility
}
if OwnerIds, ok := GroupcreateMap["ownerIds"].([]interface{}); ok {
OwnerIdsString, _ := json.Marshal(OwnerIds)
json.Unmarshal(OwnerIdsString, &o.OwnerIds)
}
if SelfUri, ok := GroupcreateMap["selfUri"].(string); ok {
o.SelfUri = &SelfUri
}
return nil
}
// String returns a JSON representation of the model
func (o *Groupcreate) String() string {
j, _ := json.Marshal(o)
str, _ := strconv.Unquote(strings.Replace(strconv.Quote(string(j)), `\\u`, `\u`, -1))
return str
}