-
Notifications
You must be signed in to change notification settings - Fork 6
/
public_update_party_attributes_v1_responses.go
419 lines (318 loc) · 13 KB
/
public_update_party_attributes_v1_responses.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
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
// Copyright (c) 2021 AccelByte Inc. All Rights Reserved.
// This is licensed software from AccelByte Inc, for limitations
// and restrictions contact your company contract manager.
// Code generated by go-swagger; DO NOT EDIT.
package party
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"encoding/json"
"fmt"
"io"
"io/ioutil"
"github.com/go-openapi/runtime"
"github.com/go-openapi/strfmt"
"github.com/AccelByte/accelbyte-go-sdk/lobby-sdk/pkg/lobbyclientmodels"
)
// PublicUpdatePartyAttributesV1Reader is a Reader for the PublicUpdatePartyAttributesV1 structure.
type PublicUpdatePartyAttributesV1Reader struct {
formats strfmt.Registry
}
// ReadResponse reads a server response into the received o.
func (o *PublicUpdatePartyAttributesV1Reader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
switch response.Code() {
case 200:
result := NewPublicUpdatePartyAttributesV1OK()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return result, nil
case 400:
result := NewPublicUpdatePartyAttributesV1BadRequest()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return result, nil
case 401:
result := NewPublicUpdatePartyAttributesV1Unauthorized()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return result, nil
case 403:
result := NewPublicUpdatePartyAttributesV1Forbidden()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return result, nil
case 404:
result := NewPublicUpdatePartyAttributesV1NotFound()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return result, nil
case 412:
result := NewPublicUpdatePartyAttributesV1PreconditionFailed()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return result, nil
case 500:
result := NewPublicUpdatePartyAttributesV1InternalServerError()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return result, nil
default:
data, err := ioutil.ReadAll(response.Body())
if err != nil {
return nil, err
}
return nil, fmt.Errorf("Requested PUT /lobby/v1/public/party/namespaces/{namespace}/parties/{partyId}/attributes returns an error %d: %s", response.Code(), string(data))
}
}
// NewPublicUpdatePartyAttributesV1OK creates a PublicUpdatePartyAttributesV1OK with default headers values
func NewPublicUpdatePartyAttributesV1OK() *PublicUpdatePartyAttributesV1OK {
return &PublicUpdatePartyAttributesV1OK{}
}
/*PublicUpdatePartyAttributesV1OK handles this case with default header values.
OK
*/
type PublicUpdatePartyAttributesV1OK struct {
Payload *lobbyclientmodels.ModelsPartyData
}
func (o *PublicUpdatePartyAttributesV1OK) Error() string {
return fmt.Sprintf("[PUT /lobby/v1/public/party/namespaces/{namespace}/parties/{partyId}/attributes][%d] publicUpdatePartyAttributesV1OK %+v", 200, o.ToJSONString())
}
func (o *PublicUpdatePartyAttributesV1OK) ToJSONString() string {
if o.Payload == nil {
return "{}"
}
b, err := json.Marshal(o.Payload)
if err != nil {
fmt.Println(err)
return fmt.Sprintf("Failed to marshal the payload: %+v", o.Payload)
}
return fmt.Sprintf("%+v", string(b))
}
func (o *PublicUpdatePartyAttributesV1OK) GetPayload() *lobbyclientmodels.ModelsPartyData {
return o.Payload
}
func (o *PublicUpdatePartyAttributesV1OK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(lobbyclientmodels.ModelsPartyData)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
// NewPublicUpdatePartyAttributesV1BadRequest creates a PublicUpdatePartyAttributesV1BadRequest with default headers values
func NewPublicUpdatePartyAttributesV1BadRequest() *PublicUpdatePartyAttributesV1BadRequest {
return &PublicUpdatePartyAttributesV1BadRequest{}
}
/*PublicUpdatePartyAttributesV1BadRequest handles this case with default header values.
Bad Request
*/
type PublicUpdatePartyAttributesV1BadRequest struct {
Payload *lobbyclientmodels.RestapiErrorResponseBody
}
func (o *PublicUpdatePartyAttributesV1BadRequest) Error() string {
return fmt.Sprintf("[PUT /lobby/v1/public/party/namespaces/{namespace}/parties/{partyId}/attributes][%d] publicUpdatePartyAttributesV1BadRequest %+v", 400, o.ToJSONString())
}
func (o *PublicUpdatePartyAttributesV1BadRequest) ToJSONString() string {
if o.Payload == nil {
return "{}"
}
b, err := json.Marshal(o.Payload)
if err != nil {
fmt.Println(err)
return fmt.Sprintf("Failed to marshal the payload: %+v", o.Payload)
}
return fmt.Sprintf("%+v", string(b))
}
func (o *PublicUpdatePartyAttributesV1BadRequest) GetPayload() *lobbyclientmodels.RestapiErrorResponseBody {
return o.Payload
}
func (o *PublicUpdatePartyAttributesV1BadRequest) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(lobbyclientmodels.RestapiErrorResponseBody)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
// NewPublicUpdatePartyAttributesV1Unauthorized creates a PublicUpdatePartyAttributesV1Unauthorized with default headers values
func NewPublicUpdatePartyAttributesV1Unauthorized() *PublicUpdatePartyAttributesV1Unauthorized {
return &PublicUpdatePartyAttributesV1Unauthorized{}
}
/*PublicUpdatePartyAttributesV1Unauthorized handles this case with default header values.
Unauthorized
*/
type PublicUpdatePartyAttributesV1Unauthorized struct {
Payload *lobbyclientmodels.RestapiErrorResponseBody
}
func (o *PublicUpdatePartyAttributesV1Unauthorized) Error() string {
return fmt.Sprintf("[PUT /lobby/v1/public/party/namespaces/{namespace}/parties/{partyId}/attributes][%d] publicUpdatePartyAttributesV1Unauthorized %+v", 401, o.ToJSONString())
}
func (o *PublicUpdatePartyAttributesV1Unauthorized) ToJSONString() string {
if o.Payload == nil {
return "{}"
}
b, err := json.Marshal(o.Payload)
if err != nil {
fmt.Println(err)
return fmt.Sprintf("Failed to marshal the payload: %+v", o.Payload)
}
return fmt.Sprintf("%+v", string(b))
}
func (o *PublicUpdatePartyAttributesV1Unauthorized) GetPayload() *lobbyclientmodels.RestapiErrorResponseBody {
return o.Payload
}
func (o *PublicUpdatePartyAttributesV1Unauthorized) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(lobbyclientmodels.RestapiErrorResponseBody)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
// NewPublicUpdatePartyAttributesV1Forbidden creates a PublicUpdatePartyAttributesV1Forbidden with default headers values
func NewPublicUpdatePartyAttributesV1Forbidden() *PublicUpdatePartyAttributesV1Forbidden {
return &PublicUpdatePartyAttributesV1Forbidden{}
}
/*PublicUpdatePartyAttributesV1Forbidden handles this case with default header values.
Forbidden
*/
type PublicUpdatePartyAttributesV1Forbidden struct {
Payload *lobbyclientmodels.RestapiErrorResponseBody
}
func (o *PublicUpdatePartyAttributesV1Forbidden) Error() string {
return fmt.Sprintf("[PUT /lobby/v1/public/party/namespaces/{namespace}/parties/{partyId}/attributes][%d] publicUpdatePartyAttributesV1Forbidden %+v", 403, o.ToJSONString())
}
func (o *PublicUpdatePartyAttributesV1Forbidden) ToJSONString() string {
if o.Payload == nil {
return "{}"
}
b, err := json.Marshal(o.Payload)
if err != nil {
fmt.Println(err)
return fmt.Sprintf("Failed to marshal the payload: %+v", o.Payload)
}
return fmt.Sprintf("%+v", string(b))
}
func (o *PublicUpdatePartyAttributesV1Forbidden) GetPayload() *lobbyclientmodels.RestapiErrorResponseBody {
return o.Payload
}
func (o *PublicUpdatePartyAttributesV1Forbidden) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(lobbyclientmodels.RestapiErrorResponseBody)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
// NewPublicUpdatePartyAttributesV1NotFound creates a PublicUpdatePartyAttributesV1NotFound with default headers values
func NewPublicUpdatePartyAttributesV1NotFound() *PublicUpdatePartyAttributesV1NotFound {
return &PublicUpdatePartyAttributesV1NotFound{}
}
/*PublicUpdatePartyAttributesV1NotFound handles this case with default header values.
Not Found
*/
type PublicUpdatePartyAttributesV1NotFound struct {
Payload *lobbyclientmodels.RestapiErrorResponseBody
}
func (o *PublicUpdatePartyAttributesV1NotFound) Error() string {
return fmt.Sprintf("[PUT /lobby/v1/public/party/namespaces/{namespace}/parties/{partyId}/attributes][%d] publicUpdatePartyAttributesV1NotFound %+v", 404, o.ToJSONString())
}
func (o *PublicUpdatePartyAttributesV1NotFound) ToJSONString() string {
if o.Payload == nil {
return "{}"
}
b, err := json.Marshal(o.Payload)
if err != nil {
fmt.Println(err)
return fmt.Sprintf("Failed to marshal the payload: %+v", o.Payload)
}
return fmt.Sprintf("%+v", string(b))
}
func (o *PublicUpdatePartyAttributesV1NotFound) GetPayload() *lobbyclientmodels.RestapiErrorResponseBody {
return o.Payload
}
func (o *PublicUpdatePartyAttributesV1NotFound) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(lobbyclientmodels.RestapiErrorResponseBody)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
// NewPublicUpdatePartyAttributesV1PreconditionFailed creates a PublicUpdatePartyAttributesV1PreconditionFailed with default headers values
func NewPublicUpdatePartyAttributesV1PreconditionFailed() *PublicUpdatePartyAttributesV1PreconditionFailed {
return &PublicUpdatePartyAttributesV1PreconditionFailed{}
}
/*PublicUpdatePartyAttributesV1PreconditionFailed handles this case with default header values.
Precondition Failed
*/
type PublicUpdatePartyAttributesV1PreconditionFailed struct {
Payload *lobbyclientmodels.RestapiErrorResponseBody
}
func (o *PublicUpdatePartyAttributesV1PreconditionFailed) Error() string {
return fmt.Sprintf("[PUT /lobby/v1/public/party/namespaces/{namespace}/parties/{partyId}/attributes][%d] publicUpdatePartyAttributesV1PreconditionFailed %+v", 412, o.ToJSONString())
}
func (o *PublicUpdatePartyAttributesV1PreconditionFailed) ToJSONString() string {
if o.Payload == nil {
return "{}"
}
b, err := json.Marshal(o.Payload)
if err != nil {
fmt.Println(err)
return fmt.Sprintf("Failed to marshal the payload: %+v", o.Payload)
}
return fmt.Sprintf("%+v", string(b))
}
func (o *PublicUpdatePartyAttributesV1PreconditionFailed) GetPayload() *lobbyclientmodels.RestapiErrorResponseBody {
return o.Payload
}
func (o *PublicUpdatePartyAttributesV1PreconditionFailed) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(lobbyclientmodels.RestapiErrorResponseBody)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
// NewPublicUpdatePartyAttributesV1InternalServerError creates a PublicUpdatePartyAttributesV1InternalServerError with default headers values
func NewPublicUpdatePartyAttributesV1InternalServerError() *PublicUpdatePartyAttributesV1InternalServerError {
return &PublicUpdatePartyAttributesV1InternalServerError{}
}
/*PublicUpdatePartyAttributesV1InternalServerError handles this case with default header values.
Internal Server Error
*/
type PublicUpdatePartyAttributesV1InternalServerError struct {
Payload *lobbyclientmodels.RestapiErrorResponseBody
}
func (o *PublicUpdatePartyAttributesV1InternalServerError) Error() string {
return fmt.Sprintf("[PUT /lobby/v1/public/party/namespaces/{namespace}/parties/{partyId}/attributes][%d] publicUpdatePartyAttributesV1InternalServerError %+v", 500, o.ToJSONString())
}
func (o *PublicUpdatePartyAttributesV1InternalServerError) ToJSONString() string {
if o.Payload == nil {
return "{}"
}
b, err := json.Marshal(o.Payload)
if err != nil {
fmt.Println(err)
return fmt.Sprintf("Failed to marshal the payload: %+v", o.Payload)
}
return fmt.Sprintf("%+v", string(b))
}
func (o *PublicUpdatePartyAttributesV1InternalServerError) GetPayload() *lobbyclientmodels.RestapiErrorResponseBody {
return o.Payload
}
func (o *PublicUpdatePartyAttributesV1InternalServerError) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(lobbyclientmodels.RestapiErrorResponseBody)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}