-
Notifications
You must be signed in to change notification settings - Fork 2
/
oas_schemas_gen.go
590 lines (485 loc) · 12.1 KB
/
oas_schemas_gen.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
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
// Code generated by ogen, DO NOT EDIT.
package openapi
import (
"fmt"
"io"
"time"
"github.com/go-faster/errors"
"github.com/google/uuid"
)
func (s *ErrorStatusCode) Error() string {
return fmt.Sprintf("code %d: %+v", s.StatusCode, s.Response)
}
type AddPageBadRequest struct {
Field string `json:"field"`
Error string `json:"error"`
}
// GetField returns the value of Field.
func (s *AddPageBadRequest) GetField() string {
return s.Field
}
// GetError returns the value of Error.
func (s *AddPageBadRequest) GetError() string {
return s.Error
}
// SetField sets the value of Field.
func (s *AddPageBadRequest) SetField(val string) {
s.Field = val
}
// SetError sets the value of Error.
func (s *AddPageBadRequest) SetError(val string) {
s.Error = val
}
func (*AddPageBadRequest) addPageRes() {}
type AddPageReq struct {
URL string `json:"url"`
Description OptString `json:"description"`
Formats []Format `json:"formats"`
}
// GetURL returns the value of URL.
func (s *AddPageReq) GetURL() string {
return s.URL
}
// GetDescription returns the value of Description.
func (s *AddPageReq) GetDescription() OptString {
return s.Description
}
// GetFormats returns the value of Formats.
func (s *AddPageReq) GetFormats() []Format {
return s.Formats
}
// SetURL sets the value of URL.
func (s *AddPageReq) SetURL(val string) {
s.URL = val
}
// SetDescription sets the value of Description.
func (s *AddPageReq) SetDescription(val OptString) {
s.Description = val
}
// SetFormats sets the value of Formats.
func (s *AddPageReq) SetFormats(val []Format) {
s.Formats = val
}
// Ref: #/components/schemas/error
type Error struct {
Message string `json:"message"`
Localized OptString `json:"localized"`
}
// GetMessage returns the value of Message.
func (s *Error) GetMessage() string {
return s.Message
}
// GetLocalized returns the value of Localized.
func (s *Error) GetLocalized() OptString {
return s.Localized
}
// SetMessage sets the value of Message.
func (s *Error) SetMessage(val string) {
s.Message = val
}
// SetLocalized sets the value of Localized.
func (s *Error) SetLocalized(val OptString) {
s.Localized = val
}
// ErrorStatusCode wraps Error with StatusCode.
type ErrorStatusCode struct {
StatusCode int
Response Error
}
// GetStatusCode returns the value of StatusCode.
func (s *ErrorStatusCode) GetStatusCode() int {
return s.StatusCode
}
// GetResponse returns the value of Response.
func (s *ErrorStatusCode) GetResponse() Error {
return s.Response
}
// SetStatusCode sets the value of StatusCode.
func (s *ErrorStatusCode) SetStatusCode(val int) {
s.StatusCode = val
}
// SetResponse sets the value of Response.
func (s *ErrorStatusCode) SetResponse(val Error) {
s.Response = val
}
// Ref: #/components/schemas/format
type Format string
const (
FormatAll Format = "all"
FormatPdf Format = "pdf"
FormatSingleFile Format = "single_file"
FormatHeaders Format = "headers"
)
// MarshalText implements encoding.TextMarshaler.
func (s Format) MarshalText() ([]byte, error) {
switch s {
case FormatAll:
return []byte(s), nil
case FormatPdf:
return []byte(s), nil
case FormatSingleFile:
return []byte(s), nil
case FormatHeaders:
return []byte(s), nil
default:
return nil, errors.Errorf("invalid value: %q", s)
}
}
// UnmarshalText implements encoding.TextUnmarshaler.
func (s *Format) UnmarshalText(data []byte) error {
switch Format(data) {
case FormatAll:
*s = FormatAll
return nil
case FormatPdf:
*s = FormatPdf
return nil
case FormatSingleFile:
*s = FormatSingleFile
return nil
case FormatHeaders:
*s = FormatHeaders
return nil
default:
return errors.Errorf("invalid value: %q", data)
}
}
// GetFileNotFound is response for GetFile operation.
type GetFileNotFound struct{}
func (*GetFileNotFound) getFileRes() {}
type GetFileOKApplicationPdf struct {
Data io.Reader
}
// Read reads data from the Data reader.
//
// Kept to satisfy the io.Reader interface.
func (s GetFileOKApplicationPdf) Read(p []byte) (n int, err error) {
return s.Data.Read(p)
}
func (*GetFileOKApplicationPdf) getFileRes() {}
type GetFileOKTextHTML struct {
Data io.Reader
}
// Read reads data from the Data reader.
//
// Kept to satisfy the io.Reader interface.
func (s GetFileOKTextHTML) Read(p []byte) (n int, err error) {
return s.Data.Read(p)
}
func (*GetFileOKTextHTML) getFileRes() {}
type GetFileOKTextPlain struct {
Data io.Reader
}
// Read reads data from the Data reader.
//
// Kept to satisfy the io.Reader interface.
func (s GetFileOKTextPlain) Read(p []byte) (n int, err error) {
return s.Data.Read(p)
}
func (*GetFileOKTextPlain) getFileRes() {}
// GetPageNotFound is response for GetPage operation.
type GetPageNotFound struct{}
func (*GetPageNotFound) getPageRes() {}
// NewOptAddPageReq returns new OptAddPageReq with value set to v.
func NewOptAddPageReq(v AddPageReq) OptAddPageReq {
return OptAddPageReq{
Value: v,
Set: true,
}
}
// OptAddPageReq is optional AddPageReq.
type OptAddPageReq struct {
Value AddPageReq
Set bool
}
// IsSet returns true if OptAddPageReq was set.
func (o OptAddPageReq) IsSet() bool { return o.Set }
// Reset unsets value.
func (o *OptAddPageReq) Reset() {
var v AddPageReq
o.Value = v
o.Set = false
}
// SetTo sets value to v.
func (o *OptAddPageReq) SetTo(v AddPageReq) {
o.Set = true
o.Value = v
}
// Get returns value and boolean that denotes whether value was set.
func (o OptAddPageReq) Get() (v AddPageReq, ok bool) {
if !o.Set {
return v, false
}
return o.Value, true
}
// Or returns value if set, or given parameter if does not.
func (o OptAddPageReq) Or(d AddPageReq) AddPageReq {
if v, ok := o.Get(); ok {
return v
}
return d
}
// NewOptString returns new OptString with value set to v.
func NewOptString(v string) OptString {
return OptString{
Value: v,
Set: true,
}
}
// OptString is optional string.
type OptString struct {
Value string
Set bool
}
// IsSet returns true if OptString was set.
func (o OptString) IsSet() bool { return o.Set }
// Reset unsets value.
func (o *OptString) Reset() {
var v string
o.Value = v
o.Set = false
}
// SetTo sets value to v.
func (o *OptString) SetTo(v string) {
o.Set = true
o.Value = v
}
// Get returns value and boolean that denotes whether value was set.
func (o OptString) Get() (v string, ok bool) {
if !o.Set {
return v, false
}
return o.Value, true
}
// Or returns value if set, or given parameter if does not.
func (o OptString) Or(d string) string {
if v, ok := o.Get(); ok {
return v
}
return d
}
// Ref: #/components/schemas/page
type Page struct {
ID uuid.UUID `json:"id"`
URL string `json:"url"`
Created time.Time `json:"created"`
Formats []Format `json:"formats"`
Status Status `json:"status"`
}
// GetID returns the value of ID.
func (s *Page) GetID() uuid.UUID {
return s.ID
}
// GetURL returns the value of URL.
func (s *Page) GetURL() string {
return s.URL
}
// GetCreated returns the value of Created.
func (s *Page) GetCreated() time.Time {
return s.Created
}
// GetFormats returns the value of Formats.
func (s *Page) GetFormats() []Format {
return s.Formats
}
// GetStatus returns the value of Status.
func (s *Page) GetStatus() Status {
return s.Status
}
// SetID sets the value of ID.
func (s *Page) SetID(val uuid.UUID) {
s.ID = val
}
// SetURL sets the value of URL.
func (s *Page) SetURL(val string) {
s.URL = val
}
// SetCreated sets the value of Created.
func (s *Page) SetCreated(val time.Time) {
s.Created = val
}
// SetFormats sets the value of Formats.
func (s *Page) SetFormats(val []Format) {
s.Formats = val
}
// SetStatus sets the value of Status.
func (s *Page) SetStatus(val Status) {
s.Status = val
}
func (*Page) addPageRes() {}
// Merged schema.
// Ref: #/components/schemas/pageWithResults
type PageWithResults struct {
ID uuid.UUID `json:"id"`
URL string `json:"url"`
Created time.Time `json:"created"`
Formats []Format `json:"formats"`
Status Status `json:"status"`
Results []Result `json:"results"`
}
// GetID returns the value of ID.
func (s *PageWithResults) GetID() uuid.UUID {
return s.ID
}
// GetURL returns the value of URL.
func (s *PageWithResults) GetURL() string {
return s.URL
}
// GetCreated returns the value of Created.
func (s *PageWithResults) GetCreated() time.Time {
return s.Created
}
// GetFormats returns the value of Formats.
func (s *PageWithResults) GetFormats() []Format {
return s.Formats
}
// GetStatus returns the value of Status.
func (s *PageWithResults) GetStatus() Status {
return s.Status
}
// GetResults returns the value of Results.
func (s *PageWithResults) GetResults() []Result {
return s.Results
}
// SetID sets the value of ID.
func (s *PageWithResults) SetID(val uuid.UUID) {
s.ID = val
}
// SetURL sets the value of URL.
func (s *PageWithResults) SetURL(val string) {
s.URL = val
}
// SetCreated sets the value of Created.
func (s *PageWithResults) SetCreated(val time.Time) {
s.Created = val
}
// SetFormats sets the value of Formats.
func (s *PageWithResults) SetFormats(val []Format) {
s.Formats = val
}
// SetStatus sets the value of Status.
func (s *PageWithResults) SetStatus(val Status) {
s.Status = val
}
// SetResults sets the value of Results.
func (s *PageWithResults) SetResults(val []Result) {
s.Results = val
}
func (*PageWithResults) getPageRes() {}
type Pages []Page
// Ref: #/components/schemas/result
type Result struct {
Format Format `json:"format"`
Error OptString `json:"error"`
Files []ResultFilesItem `json:"files"`
}
// GetFormat returns the value of Format.
func (s *Result) GetFormat() Format {
return s.Format
}
// GetError returns the value of Error.
func (s *Result) GetError() OptString {
return s.Error
}
// GetFiles returns the value of Files.
func (s *Result) GetFiles() []ResultFilesItem {
return s.Files
}
// SetFormat sets the value of Format.
func (s *Result) SetFormat(val Format) {
s.Format = val
}
// SetError sets the value of Error.
func (s *Result) SetError(val OptString) {
s.Error = val
}
// SetFiles sets the value of Files.
func (s *Result) SetFiles(val []ResultFilesItem) {
s.Files = val
}
type ResultFilesItem struct {
ID uuid.UUID `json:"id"`
Name string `json:"name"`
Mimetype string `json:"mimetype"`
Size int64 `json:"size"`
}
// GetID returns the value of ID.
func (s *ResultFilesItem) GetID() uuid.UUID {
return s.ID
}
// GetName returns the value of Name.
func (s *ResultFilesItem) GetName() string {
return s.Name
}
// GetMimetype returns the value of Mimetype.
func (s *ResultFilesItem) GetMimetype() string {
return s.Mimetype
}
// GetSize returns the value of Size.
func (s *ResultFilesItem) GetSize() int64 {
return s.Size
}
// SetID sets the value of ID.
func (s *ResultFilesItem) SetID(val uuid.UUID) {
s.ID = val
}
// SetName sets the value of Name.
func (s *ResultFilesItem) SetName(val string) {
s.Name = val
}
// SetMimetype sets the value of Mimetype.
func (s *ResultFilesItem) SetMimetype(val string) {
s.Mimetype = val
}
// SetSize sets the value of Size.
func (s *ResultFilesItem) SetSize(val int64) {
s.Size = val
}
// Ref: #/components/schemas/status
type Status string
const (
StatusNew Status = "new"
StatusProcessing Status = "processing"
StatusDone Status = "done"
StatusFailed Status = "failed"
StatusWithErrors Status = "with_errors"
)
// MarshalText implements encoding.TextMarshaler.
func (s Status) MarshalText() ([]byte, error) {
switch s {
case StatusNew:
return []byte(s), nil
case StatusProcessing:
return []byte(s), nil
case StatusDone:
return []byte(s), nil
case StatusFailed:
return []byte(s), nil
case StatusWithErrors:
return []byte(s), nil
default:
return nil, errors.Errorf("invalid value: %q", s)
}
}
// UnmarshalText implements encoding.TextUnmarshaler.
func (s *Status) UnmarshalText(data []byte) error {
switch Status(data) {
case StatusNew:
*s = StatusNew
return nil
case StatusProcessing:
*s = StatusProcessing
return nil
case StatusDone:
*s = StatusDone
return nil
case StatusFailed:
*s = StatusFailed
return nil
case StatusWithErrors:
*s = StatusWithErrors
return nil
default:
return errors.Errorf("invalid value: %q", data)
}
}