-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes.go
128 lines (110 loc) · 2.84 KB
/
types.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
// This file was auto-generated by Fern from our API Definition.
package api
import (
json "encoding/json"
fmt "fmt"
core "sdk/core"
)
type BadRequestErrorBody struct {
// Error message describing the issue with the request.
Error *string `json:"error,omitempty"`
_rawJSON json.RawMessage
}
func (b *BadRequestErrorBody) UnmarshalJSON(data []byte) error {
type unmarshaler BadRequestErrorBody
var value unmarshaler
if err := json.Unmarshal(data, &value); err != nil {
return err
}
*b = BadRequestErrorBody(value)
b._rawJSON = json.RawMessage(data)
return nil
}
func (b *BadRequestErrorBody) String() string {
if len(b._rawJSON) > 0 {
if value, err := core.StringifyJSON(b._rawJSON); err == nil {
return value
}
}
if value, err := core.StringifyJSON(b); err == nil {
return value
}
return fmt.Sprintf("%#v", b)
}
type ForbiddenErrorBody struct {
Error *string `json:"error,omitempty"`
_rawJSON json.RawMessage
}
func (f *ForbiddenErrorBody) UnmarshalJSON(data []byte) error {
type unmarshaler ForbiddenErrorBody
var value unmarshaler
if err := json.Unmarshal(data, &value); err != nil {
return err
}
*f = ForbiddenErrorBody(value)
f._rawJSON = json.RawMessage(data)
return nil
}
func (f *ForbiddenErrorBody) String() string {
if len(f._rawJSON) > 0 {
if value, err := core.StringifyJSON(f._rawJSON); err == nil {
return value
}
}
if value, err := core.StringifyJSON(f); err == nil {
return value
}
return fmt.Sprintf("%#v", f)
}
type InternalServerErrorBody struct {
// Error message describing the internal server error.
Error *string `json:"error,omitempty"`
_rawJSON json.RawMessage
}
func (i *InternalServerErrorBody) UnmarshalJSON(data []byte) error {
type unmarshaler InternalServerErrorBody
var value unmarshaler
if err := json.Unmarshal(data, &value); err != nil {
return err
}
*i = InternalServerErrorBody(value)
i._rawJSON = json.RawMessage(data)
return nil
}
func (i *InternalServerErrorBody) String() string {
if len(i._rawJSON) > 0 {
if value, err := core.StringifyJSON(i._rawJSON); err == nil {
return value
}
}
if value, err := core.StringifyJSON(i); err == nil {
return value
}
return fmt.Sprintf("%#v", i)
}
type NotFoundErrorBody struct {
// Error message indicating the folder was not found.
Error *string `json:"error,omitempty"`
_rawJSON json.RawMessage
}
func (n *NotFoundErrorBody) UnmarshalJSON(data []byte) error {
type unmarshaler NotFoundErrorBody
var value unmarshaler
if err := json.Unmarshal(data, &value); err != nil {
return err
}
*n = NotFoundErrorBody(value)
n._rawJSON = json.RawMessage(data)
return nil
}
func (n *NotFoundErrorBody) String() string {
if len(n._rawJSON) > 0 {
if value, err := core.StringifyJSON(n._rawJSON); err == nil {
return value
}
}
if value, err := core.StringifyJSON(n); err == nil {
return value
}
return fmt.Sprintf("%#v", n)
}