-
Notifications
You must be signed in to change notification settings - Fork 13
/
integrationtype.go
333 lines (208 loc) · 9.39 KB
/
integrationtype.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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
package platformclientv2
import (
"github.com/leekchan/timeutil"
"encoding/json"
"strconv"
"strings"
)
// Integrationtype - Descriptor for a type of Integration.
type Integrationtype struct {
// Id - The ID of the integration type.
Id *string `json:"id,omitempty"`
// Name
Name *string `json:"name,omitempty"`
// Description - Description of the integration type.
Description *string `json:"description,omitempty"`
// Provider - PureCloud provider of the integration type.
Provider *string `json:"provider,omitempty"`
// Category - Category describing the integration type.
Category *string `json:"category,omitempty"`
// Images - Collection of logos.
Images *[]Userimage `json:"images,omitempty"`
// ConfigPropertiesSchemaUri - URI of the schema describing the key-value properties needed to configure an integration of this type.
ConfigPropertiesSchemaUri *string `json:"configPropertiesSchemaUri,omitempty"`
// ConfigAdvancedSchemaUri - URI of the schema describing the advanced JSON document needed to configure an integration of this type.
ConfigAdvancedSchemaUri *string `json:"configAdvancedSchemaUri,omitempty"`
// HelpUri - URI of a page with more information about the integration type
HelpUri *string `json:"helpUri,omitempty"`
// TermsOfServiceUri - URI of a page with terms and conditions for the integration type
TermsOfServiceUri *string `json:"termsOfServiceUri,omitempty"`
// VendorName - Name of the vendor of this integration type
VendorName *string `json:"vendorName,omitempty"`
// VendorWebsiteUri - URI of the vendor's website
VendorWebsiteUri *string `json:"vendorWebsiteUri,omitempty"`
// MarketplaceUri - URI of the marketplace listing for this integration type
MarketplaceUri *string `json:"marketplaceUri,omitempty"`
// FaqUri - URI of frequently asked questions about the integration type
FaqUri *string `json:"faqUri,omitempty"`
// PrivacyPolicyUri - URI of a privacy policy for users of the integration type
PrivacyPolicyUri *string `json:"privacyPolicyUri,omitempty"`
// SupportContactUri - URI for vendor support
SupportContactUri *string `json:"supportContactUri,omitempty"`
// SalesContactUri - URI for vendor sales information
SalesContactUri *string `json:"salesContactUri,omitempty"`
// HelpLinks - List of links to additional help resources
HelpLinks *[]Helplink `json:"helpLinks,omitempty"`
// Credentials - Map of credentials for integrations of this type. The key is the name of a credential that can be provided in the credentials property of the integration configuration.
Credentials *map[string]Credentialspecification `json:"credentials,omitempty"`
// NonInstallable - Indicates if the integration type is installable or not.
NonInstallable *bool `json:"nonInstallable,omitempty"`
// MaxInstances - The maximum number of integration instances allowable for this integration type
MaxInstances *int `json:"maxInstances,omitempty"`
// UserPermissions - List of permissions required to permit user access to the integration type.
UserPermissions *[]string `json:"userPermissions,omitempty"`
// VendorOAuthClientIds - List of OAuth Client IDs that must be authorized when the integration is created.
VendorOAuthClientIds *[]string `json:"vendorOAuthClientIds,omitempty"`
// SelfUri - The URI for this object
SelfUri *string `json:"selfUri,omitempty"`
}
func (o *Integrationtype) MarshalJSON() ([]byte, error) {
// Redundant initialization to avoid unused import errors for models with no Time values
_ = timeutil.Timedelta{}
type Alias Integrationtype
return json.Marshal(&struct {
Id *string `json:"id,omitempty"`
Name *string `json:"name,omitempty"`
Description *string `json:"description,omitempty"`
Provider *string `json:"provider,omitempty"`
Category *string `json:"category,omitempty"`
Images *[]Userimage `json:"images,omitempty"`
ConfigPropertiesSchemaUri *string `json:"configPropertiesSchemaUri,omitempty"`
ConfigAdvancedSchemaUri *string `json:"configAdvancedSchemaUri,omitempty"`
HelpUri *string `json:"helpUri,omitempty"`
TermsOfServiceUri *string `json:"termsOfServiceUri,omitempty"`
VendorName *string `json:"vendorName,omitempty"`
VendorWebsiteUri *string `json:"vendorWebsiteUri,omitempty"`
MarketplaceUri *string `json:"marketplaceUri,omitempty"`
FaqUri *string `json:"faqUri,omitempty"`
PrivacyPolicyUri *string `json:"privacyPolicyUri,omitempty"`
SupportContactUri *string `json:"supportContactUri,omitempty"`
SalesContactUri *string `json:"salesContactUri,omitempty"`
HelpLinks *[]Helplink `json:"helpLinks,omitempty"`
Credentials *map[string]Credentialspecification `json:"credentials,omitempty"`
NonInstallable *bool `json:"nonInstallable,omitempty"`
MaxInstances *int `json:"maxInstances,omitempty"`
UserPermissions *[]string `json:"userPermissions,omitempty"`
VendorOAuthClientIds *[]string `json:"vendorOAuthClientIds,omitempty"`
SelfUri *string `json:"selfUri,omitempty"`
*Alias
}{
Id: o.Id,
Name: o.Name,
Description: o.Description,
Provider: o.Provider,
Category: o.Category,
Images: o.Images,
ConfigPropertiesSchemaUri: o.ConfigPropertiesSchemaUri,
ConfigAdvancedSchemaUri: o.ConfigAdvancedSchemaUri,
HelpUri: o.HelpUri,
TermsOfServiceUri: o.TermsOfServiceUri,
VendorName: o.VendorName,
VendorWebsiteUri: o.VendorWebsiteUri,
MarketplaceUri: o.MarketplaceUri,
FaqUri: o.FaqUri,
PrivacyPolicyUri: o.PrivacyPolicyUri,
SupportContactUri: o.SupportContactUri,
SalesContactUri: o.SalesContactUri,
HelpLinks: o.HelpLinks,
Credentials: o.Credentials,
NonInstallable: o.NonInstallable,
MaxInstances: o.MaxInstances,
UserPermissions: o.UserPermissions,
VendorOAuthClientIds: o.VendorOAuthClientIds,
SelfUri: o.SelfUri,
Alias: (*Alias)(o),
})
}
func (o *Integrationtype) UnmarshalJSON(b []byte) error {
var IntegrationtypeMap map[string]interface{}
err := json.Unmarshal(b, &IntegrationtypeMap)
if err != nil {
return err
}
if Id, ok := IntegrationtypeMap["id"].(string); ok {
o.Id = &Id
}
if Name, ok := IntegrationtypeMap["name"].(string); ok {
o.Name = &Name
}
if Description, ok := IntegrationtypeMap["description"].(string); ok {
o.Description = &Description
}
if Provider, ok := IntegrationtypeMap["provider"].(string); ok {
o.Provider = &Provider
}
if Category, ok := IntegrationtypeMap["category"].(string); ok {
o.Category = &Category
}
if Images, ok := IntegrationtypeMap["images"].([]interface{}); ok {
ImagesString, _ := json.Marshal(Images)
json.Unmarshal(ImagesString, &o.Images)
}
if ConfigPropertiesSchemaUri, ok := IntegrationtypeMap["configPropertiesSchemaUri"].(string); ok {
o.ConfigPropertiesSchemaUri = &ConfigPropertiesSchemaUri
}
if ConfigAdvancedSchemaUri, ok := IntegrationtypeMap["configAdvancedSchemaUri"].(string); ok {
o.ConfigAdvancedSchemaUri = &ConfigAdvancedSchemaUri
}
if HelpUri, ok := IntegrationtypeMap["helpUri"].(string); ok {
o.HelpUri = &HelpUri
}
if TermsOfServiceUri, ok := IntegrationtypeMap["termsOfServiceUri"].(string); ok {
o.TermsOfServiceUri = &TermsOfServiceUri
}
if VendorName, ok := IntegrationtypeMap["vendorName"].(string); ok {
o.VendorName = &VendorName
}
if VendorWebsiteUri, ok := IntegrationtypeMap["vendorWebsiteUri"].(string); ok {
o.VendorWebsiteUri = &VendorWebsiteUri
}
if MarketplaceUri, ok := IntegrationtypeMap["marketplaceUri"].(string); ok {
o.MarketplaceUri = &MarketplaceUri
}
if FaqUri, ok := IntegrationtypeMap["faqUri"].(string); ok {
o.FaqUri = &FaqUri
}
if PrivacyPolicyUri, ok := IntegrationtypeMap["privacyPolicyUri"].(string); ok {
o.PrivacyPolicyUri = &PrivacyPolicyUri
}
if SupportContactUri, ok := IntegrationtypeMap["supportContactUri"].(string); ok {
o.SupportContactUri = &SupportContactUri
}
if SalesContactUri, ok := IntegrationtypeMap["salesContactUri"].(string); ok {
o.SalesContactUri = &SalesContactUri
}
if HelpLinks, ok := IntegrationtypeMap["helpLinks"].([]interface{}); ok {
HelpLinksString, _ := json.Marshal(HelpLinks)
json.Unmarshal(HelpLinksString, &o.HelpLinks)
}
if Credentials, ok := IntegrationtypeMap["credentials"].(map[string]interface{}); ok {
CredentialsString, _ := json.Marshal(Credentials)
json.Unmarshal(CredentialsString, &o.Credentials)
}
if NonInstallable, ok := IntegrationtypeMap["nonInstallable"].(bool); ok {
o.NonInstallable = &NonInstallable
}
if MaxInstances, ok := IntegrationtypeMap["maxInstances"].(float64); ok {
MaxInstancesInt := int(MaxInstances)
o.MaxInstances = &MaxInstancesInt
}
if UserPermissions, ok := IntegrationtypeMap["userPermissions"].([]interface{}); ok {
UserPermissionsString, _ := json.Marshal(UserPermissions)
json.Unmarshal(UserPermissionsString, &o.UserPermissions)
}
if VendorOAuthClientIds, ok := IntegrationtypeMap["vendorOAuthClientIds"].([]interface{}); ok {
VendorOAuthClientIdsString, _ := json.Marshal(VendorOAuthClientIds)
json.Unmarshal(VendorOAuthClientIdsString, &o.VendorOAuthClientIds)
}
if SelfUri, ok := IntegrationtypeMap["selfUri"].(string); ok {
o.SelfUri = &SelfUri
}
return nil
}
// String returns a JSON representation of the model
func (o *Integrationtype) String() string {
j, _ := json.Marshal(o)
str, _ := strconv.Unquote(strings.Replace(strconv.Quote(string(j)), `\\u`, `\u`, -1))
return str
}