-
Notifications
You must be signed in to change notification settings - Fork 13
/
geolocationapi.go
339 lines (300 loc) · 11.8 KB
/
geolocationapi.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
334
335
336
337
338
package platformclientv2
import (
"strings"
"fmt"
"errors"
"net/url"
"encoding/json"
)
// GeolocationApi provides functions for API endpoints
type GeolocationApi struct {
Configuration *Configuration
}
// NewGeolocationApi creates an API instance using the default configuration
func NewGeolocationApi() *GeolocationApi {
fmt.Sprintf(strings.Title(""), "")
config := GetDefaultConfiguration()
return &GeolocationApi{
Configuration: config,
}
}
// NewGeolocationApiWithConfig creates an API instance using the provided configuration
func NewGeolocationApiWithConfig(config *Configuration) *GeolocationApi {
return &GeolocationApi{
Configuration: config,
}
}
// GetGeolocationsSettings invokes GET /api/v2/geolocations/settings
//
// Get a organization's GeolocationSettings
//
//
func (a GeolocationApi) GetGeolocationsSettings() (*Geolocationsettings, *APIResponse, error) {
var httpMethod = "GET"
// create path and map variables
path := a.Configuration.BasePath + "/api/v2/geolocations/settings"
defaultReturn := new(Geolocationsettings)
if true == false {
return defaultReturn, nil, errors.New("This message brought to you by the laws of physics being broken")
}
headerParams := make(map[string]string)
queryParams := make(map[string]string)
formParams := url.Values{}
var postBody interface{}
var postFileName string
var fileBytes []byte
// authentication (PureCloud OAuth) required
// oauth required
if a.Configuration.AccessToken != ""{
headerParams["Authorization"] = "Bearer " + a.Configuration.AccessToken
}
// add default headers if any
for key := range a.Configuration.DefaultHeader {
headerParams[key] = a.Configuration.DefaultHeader[key]
}
// to determine the Content-Type header
localVarHttpContentTypes := []string{ "application/json", }
// set Content-Type header
localVarHttpContentType := a.Configuration.APIClient.SelectHeaderContentType(localVarHttpContentTypes)
if localVarHttpContentType != "" {
headerParams["Content-Type"] = localVarHttpContentType
}
// to determine the Accept header
localVarHttpHeaderAccepts := []string{
"application/json",
}
// set Accept header
localVarHttpHeaderAccept := a.Configuration.APIClient.SelectHeaderAccept(localVarHttpHeaderAccepts)
if localVarHttpHeaderAccept != "" {
headerParams["Accept"] = localVarHttpHeaderAccept
}
var successPayload *Geolocationsettings
response, err := a.Configuration.APIClient.CallAPI(path, httpMethod, postBody, headerParams, queryParams, formParams, postFileName, fileBytes)
if err != nil {
// Nothing special to do here, but do avoid processing the response
} else if err == nil && response.Error != nil {
err = errors.New(response.ErrorMessage)
} else {
if "Geolocationsettings" == "string" {
copy(response.RawBody, &successPayload)
} else {
err = json.Unmarshal(response.RawBody, &successPayload)
}
}
return successPayload, response, err
}
// GetUserGeolocation invokes GET /api/v2/users/{userId}/geolocations/{clientId}
//
// Get a user's Geolocation
//
//
func (a GeolocationApi) GetUserGeolocation(userId string, clientId string) (*Geolocation, *APIResponse, error) {
var httpMethod = "GET"
// create path and map variables
path := a.Configuration.BasePath + "/api/v2/users/{userId}/geolocations/{clientId}"
path = strings.Replace(path, "{userId}", fmt.Sprintf("%v", userId), -1)
path = strings.Replace(path, "{clientId}", fmt.Sprintf("%v", clientId), -1)
defaultReturn := new(Geolocation)
if true == false {
return defaultReturn, nil, errors.New("This message brought to you by the laws of physics being broken")
}
// verify the required parameter 'userId' is set
if &userId == nil {
//
return defaultReturn, nil, errors.New("Missing required parameter 'userId' when calling GeolocationApi->GetUserGeolocation")
}
// verify the required parameter 'clientId' is set
if &clientId == nil {
//
return defaultReturn, nil, errors.New("Missing required parameter 'clientId' when calling GeolocationApi->GetUserGeolocation")
}
headerParams := make(map[string]string)
queryParams := make(map[string]string)
formParams := url.Values{}
var postBody interface{}
var postFileName string
var fileBytes []byte
// authentication (PureCloud OAuth) required
// oauth required
if a.Configuration.AccessToken != ""{
headerParams["Authorization"] = "Bearer " + a.Configuration.AccessToken
}
// add default headers if any
for key := range a.Configuration.DefaultHeader {
headerParams[key] = a.Configuration.DefaultHeader[key]
}
// to determine the Content-Type header
localVarHttpContentTypes := []string{ "application/json", }
// set Content-Type header
localVarHttpContentType := a.Configuration.APIClient.SelectHeaderContentType(localVarHttpContentTypes)
if localVarHttpContentType != "" {
headerParams["Content-Type"] = localVarHttpContentType
}
// to determine the Accept header
localVarHttpHeaderAccepts := []string{
"application/json",
}
// set Accept header
localVarHttpHeaderAccept := a.Configuration.APIClient.SelectHeaderAccept(localVarHttpHeaderAccepts)
if localVarHttpHeaderAccept != "" {
headerParams["Accept"] = localVarHttpHeaderAccept
}
var successPayload *Geolocation
response, err := a.Configuration.APIClient.CallAPI(path, httpMethod, postBody, headerParams, queryParams, formParams, postFileName, fileBytes)
if err != nil {
// Nothing special to do here, but do avoid processing the response
} else if err == nil && response.Error != nil {
err = errors.New(response.ErrorMessage)
} else {
if "Geolocation" == "string" {
copy(response.RawBody, &successPayload)
} else {
err = json.Unmarshal(response.RawBody, &successPayload)
}
}
return successPayload, response, err
}
// PatchGeolocationsSettings invokes PATCH /api/v2/geolocations/settings
//
// Patch a organization's GeolocationSettings
//
//
func (a GeolocationApi) PatchGeolocationsSettings(body Geolocationsettings) (*Geolocationsettings, *APIResponse, error) {
var httpMethod = "PATCH"
// create path and map variables
path := a.Configuration.BasePath + "/api/v2/geolocations/settings"
defaultReturn := new(Geolocationsettings)
if true == false {
return defaultReturn, nil, errors.New("This message brought to you by the laws of physics being broken")
}
// verify the required parameter 'body' is set
if &body == nil {
//
return defaultReturn, nil, errors.New("Missing required parameter 'body' when calling GeolocationApi->PatchGeolocationsSettings")
}
headerParams := make(map[string]string)
queryParams := make(map[string]string)
formParams := url.Values{}
var postBody interface{}
var postFileName string
var fileBytes []byte
// authentication (PureCloud OAuth) required
// oauth required
if a.Configuration.AccessToken != ""{
headerParams["Authorization"] = "Bearer " + a.Configuration.AccessToken
}
// add default headers if any
for key := range a.Configuration.DefaultHeader {
headerParams[key] = a.Configuration.DefaultHeader[key]
}
// to determine the Content-Type header
localVarHttpContentTypes := []string{ "application/json", }
// set Content-Type header
localVarHttpContentType := a.Configuration.APIClient.SelectHeaderContentType(localVarHttpContentTypes)
if localVarHttpContentType != "" {
headerParams["Content-Type"] = localVarHttpContentType
}
// to determine the Accept header
localVarHttpHeaderAccepts := []string{
"application/json",
}
// set Accept header
localVarHttpHeaderAccept := a.Configuration.APIClient.SelectHeaderAccept(localVarHttpHeaderAccepts)
if localVarHttpHeaderAccept != "" {
headerParams["Accept"] = localVarHttpHeaderAccept
}
// body params
postBody = &body
var successPayload *Geolocationsettings
response, err := a.Configuration.APIClient.CallAPI(path, httpMethod, postBody, headerParams, queryParams, formParams, postFileName, fileBytes)
if err != nil {
// Nothing special to do here, but do avoid processing the response
} else if err == nil && response.Error != nil {
err = errors.New(response.ErrorMessage)
} else {
if "Geolocationsettings" == "string" {
copy(response.RawBody, &successPayload)
} else {
err = json.Unmarshal(response.RawBody, &successPayload)
}
}
return successPayload, response, err
}
// PatchUserGeolocation invokes PATCH /api/v2/users/{userId}/geolocations/{clientId}
//
// Patch a user's Geolocation
//
// The geolocation object can be patched one of three ways. Option 1: Set the 'primary' property to true. This will set the client as the user's primary geolocation source. Option 2: Provide the 'latitude' and 'longitude' values. This will enqueue an asynchronous update of the 'city', 'region', and 'country', generating a notification. A subsequent GET operation will include the new values for 'city', 'region' and 'country'. Option 3: Provide the 'city', 'region', 'country' values. Option 1 can be combined with Option 2 or Option 3. For example, update the client as primary and provide latitude and longitude values.
func (a GeolocationApi) PatchUserGeolocation(userId string, clientId string, body Geolocation) (*Geolocation, *APIResponse, error) {
var httpMethod = "PATCH"
// create path and map variables
path := a.Configuration.BasePath + "/api/v2/users/{userId}/geolocations/{clientId}"
path = strings.Replace(path, "{userId}", fmt.Sprintf("%v", userId), -1)
path = strings.Replace(path, "{clientId}", fmt.Sprintf("%v", clientId), -1)
defaultReturn := new(Geolocation)
if true == false {
return defaultReturn, nil, errors.New("This message brought to you by the laws of physics being broken")
}
// verify the required parameter 'userId' is set
if &userId == nil {
//
return defaultReturn, nil, errors.New("Missing required parameter 'userId' when calling GeolocationApi->PatchUserGeolocation")
}
// verify the required parameter 'clientId' is set
if &clientId == nil {
//
return defaultReturn, nil, errors.New("Missing required parameter 'clientId' when calling GeolocationApi->PatchUserGeolocation")
}
// verify the required parameter 'body' is set
if &body == nil {
//
return defaultReturn, nil, errors.New("Missing required parameter 'body' when calling GeolocationApi->PatchUserGeolocation")
}
headerParams := make(map[string]string)
queryParams := make(map[string]string)
formParams := url.Values{}
var postBody interface{}
var postFileName string
var fileBytes []byte
// authentication (PureCloud OAuth) required
// oauth required
if a.Configuration.AccessToken != ""{
headerParams["Authorization"] = "Bearer " + a.Configuration.AccessToken
}
// add default headers if any
for key := range a.Configuration.DefaultHeader {
headerParams[key] = a.Configuration.DefaultHeader[key]
}
// to determine the Content-Type header
localVarHttpContentTypes := []string{ "application/json", }
// set Content-Type header
localVarHttpContentType := a.Configuration.APIClient.SelectHeaderContentType(localVarHttpContentTypes)
if localVarHttpContentType != "" {
headerParams["Content-Type"] = localVarHttpContentType
}
// to determine the Accept header
localVarHttpHeaderAccepts := []string{
"application/json",
}
// set Accept header
localVarHttpHeaderAccept := a.Configuration.APIClient.SelectHeaderAccept(localVarHttpHeaderAccepts)
if localVarHttpHeaderAccept != "" {
headerParams["Accept"] = localVarHttpHeaderAccept
}
// body params
postBody = &body
var successPayload *Geolocation
response, err := a.Configuration.APIClient.CallAPI(path, httpMethod, postBody, headerParams, queryParams, formParams, postFileName, fileBytes)
if err != nil {
// Nothing special to do here, but do avoid processing the response
} else if err == nil && response.Error != nil {
err = errors.New(response.ErrorMessage)
} else {
if "Geolocation" == "string" {
copy(response.RawBody, &successPayload)
} else {
err = json.Unmarshal(response.RawBody, &successPayload)
}
}
return successPayload, response, err
}