-
Notifications
You must be signed in to change notification settings - Fork 3
/
webhooks.go
175 lines (149 loc) · 4.08 KB
/
webhooks.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
// This file was auto-generated by Fern from our API Definition.
package api
import (
json "encoding/json"
fmt "fmt"
core "github.com/seamapi/go/core"
)
type WebhooksCreateRequest struct {
Url string `json:"url" url:"url"`
EventTypes []string `json:"event_types,omitempty" url:"event_types,omitempty"`
}
type WebhooksDeleteRequest struct {
WebhookId string `json:"webhook_id" url:"webhook_id"`
}
type WebhooksGetRequest struct {
WebhookId string `json:"webhook_id" url:"webhook_id"`
}
type WebhooksCreateResponse struct {
Webhook *Webhook `json:"webhook,omitempty" url:"webhook,omitempty"`
Ok bool `json:"ok" url:"ok"`
_rawJSON json.RawMessage
}
func (w *WebhooksCreateResponse) UnmarshalJSON(data []byte) error {
type unmarshaler WebhooksCreateResponse
var value unmarshaler
if err := json.Unmarshal(data, &value); err != nil {
return err
}
*w = WebhooksCreateResponse(value)
w._rawJSON = json.RawMessage(data)
return nil
}
func (w *WebhooksCreateResponse) String() string {
if len(w._rawJSON) > 0 {
if value, err := core.StringifyJSON(w._rawJSON); err == nil {
return value
}
}
if value, err := core.StringifyJSON(w); err == nil {
return value
}
return fmt.Sprintf("%#v", w)
}
type WebhooksDeleteResponse struct {
Ok bool `json:"ok" url:"ok"`
_rawJSON json.RawMessage
}
func (w *WebhooksDeleteResponse) UnmarshalJSON(data []byte) error {
type unmarshaler WebhooksDeleteResponse
var value unmarshaler
if err := json.Unmarshal(data, &value); err != nil {
return err
}
*w = WebhooksDeleteResponse(value)
w._rawJSON = json.RawMessage(data)
return nil
}
func (w *WebhooksDeleteResponse) String() string {
if len(w._rawJSON) > 0 {
if value, err := core.StringifyJSON(w._rawJSON); err == nil {
return value
}
}
if value, err := core.StringifyJSON(w); err == nil {
return value
}
return fmt.Sprintf("%#v", w)
}
type WebhooksGetResponse struct {
Webhook *Webhook `json:"webhook,omitempty" url:"webhook,omitempty"`
Ok bool `json:"ok" url:"ok"`
_rawJSON json.RawMessage
}
func (w *WebhooksGetResponse) UnmarshalJSON(data []byte) error {
type unmarshaler WebhooksGetResponse
var value unmarshaler
if err := json.Unmarshal(data, &value); err != nil {
return err
}
*w = WebhooksGetResponse(value)
w._rawJSON = json.RawMessage(data)
return nil
}
func (w *WebhooksGetResponse) String() string {
if len(w._rawJSON) > 0 {
if value, err := core.StringifyJSON(w._rawJSON); err == nil {
return value
}
}
if value, err := core.StringifyJSON(w); err == nil {
return value
}
return fmt.Sprintf("%#v", w)
}
type WebhooksListResponse struct {
Webhooks []*Webhook `json:"webhooks,omitempty" url:"webhooks,omitempty"`
Ok bool `json:"ok" url:"ok"`
_rawJSON json.RawMessage
}
func (w *WebhooksListResponse) UnmarshalJSON(data []byte) error {
type unmarshaler WebhooksListResponse
var value unmarshaler
if err := json.Unmarshal(data, &value); err != nil {
return err
}
*w = WebhooksListResponse(value)
w._rawJSON = json.RawMessage(data)
return nil
}
func (w *WebhooksListResponse) String() string {
if len(w._rawJSON) > 0 {
if value, err := core.StringifyJSON(w._rawJSON); err == nil {
return value
}
}
if value, err := core.StringifyJSON(w); err == nil {
return value
}
return fmt.Sprintf("%#v", w)
}
type WebhooksUpdateResponse struct {
Ok bool `json:"ok" url:"ok"`
_rawJSON json.RawMessage
}
func (w *WebhooksUpdateResponse) UnmarshalJSON(data []byte) error {
type unmarshaler WebhooksUpdateResponse
var value unmarshaler
if err := json.Unmarshal(data, &value); err != nil {
return err
}
*w = WebhooksUpdateResponse(value)
w._rawJSON = json.RawMessage(data)
return nil
}
func (w *WebhooksUpdateResponse) String() string {
if len(w._rawJSON) > 0 {
if value, err := core.StringifyJSON(w._rawJSON); err == nil {
return value
}
}
if value, err := core.StringifyJSON(w); err == nil {
return value
}
return fmt.Sprintf("%#v", w)
}
type WebhooksUpdateRequest struct {
WebhookId string `json:"webhook_id" url:"webhook_id"`
EventTypes []string `json:"event_types,omitempty" url:"event_types,omitempty"`
}