-
-
Notifications
You must be signed in to change notification settings - Fork 625
Expand file tree
/
Copy pathWebhookDomainObjectAbstract.php
More file actions
230 lines (196 loc) · 5.92 KB
/
WebhookDomainObjectAbstract.php
File metadata and controls
230 lines (196 loc) · 5.92 KB
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
<?php
namespace HiEvents\DomainObjects\Generated;
/**
* THIS FILE IS AUTOGENERATED - DO NOT EDIT IT DIRECTLY.
* @package HiEvents\DomainObjects\Generated
*/
abstract class WebhookDomainObjectAbstract extends \HiEvents\DomainObjects\AbstractDomainObject
{
final public const SINGULAR_NAME = 'webhook';
final public const PLURAL_NAME = 'webhooks';
final public const ID = 'id';
final public const USER_ID = 'user_id';
final public const EVENT_ID = 'event_id';
final public const ORGANIZER_ID = 'organizer_id';
final public const ACCOUNT_ID = 'account_id';
final public const URL = 'url';
final public const EVENT_TYPES = 'event_types';
final public const LAST_RESPONSE_CODE = 'last_response_code';
final public const LAST_RESPONSE_BODY = 'last_response_body';
final public const LAST_TRIGGERED_AT = 'last_triggered_at';
final public const STATUS = 'status';
final public const SECRET = 'secret';
final public const CREATED_AT = 'created_at';
final public const UPDATED_AT = 'updated_at';
final public const DELETED_AT = 'deleted_at';
protected int $id;
protected int $user_id;
protected ?int $event_id = null;
protected ?int $organizer_id = null;
protected int $account_id;
protected string $url;
protected array|string $event_types;
protected ?int $last_response_code = null;
protected ?string $last_response_body = null;
protected ?string $last_triggered_at = null;
protected string $status = 'ENABLED';
protected string $secret;
protected ?string $created_at = null;
protected ?string $updated_at = null;
protected ?string $deleted_at = null;
public function toArray(): array
{
return [
'id' => $this->id ?? null,
'user_id' => $this->user_id ?? null,
'event_id' => $this->event_id ?? null,
'organizer_id' => $this->organizer_id ?? null,
'account_id' => $this->account_id ?? null,
'url' => $this->url ?? null,
'event_types' => $this->event_types ?? null,
'last_response_code' => $this->last_response_code ?? null,
'last_response_body' => $this->last_response_body ?? null,
'last_triggered_at' => $this->last_triggered_at ?? null,
'status' => $this->status ?? null,
'secret' => $this->secret ?? null,
'created_at' => $this->created_at ?? null,
'updated_at' => $this->updated_at ?? null,
'deleted_at' => $this->deleted_at ?? null,
];
}
public function setId(int $id): self
{
$this->id = $id;
return $this;
}
public function getId(): int
{
return $this->id;
}
public function setUserId(int $user_id): self
{
$this->user_id = $user_id;
return $this;
}
public function getUserId(): int
{
return $this->user_id;
}
public function setEventId(?int $event_id): self
{
$this->event_id = $event_id;
return $this;
}
public function getEventId(): ?int
{
return $this->event_id;
}
public function setOrganizerId(?int $organizer_id): self
{
$this->organizer_id = $organizer_id;
return $this;
}
public function getOrganizerId(): ?int
{
return $this->organizer_id;
}
public function setAccountId(int $account_id): self
{
$this->account_id = $account_id;
return $this;
}
public function getAccountId(): int
{
return $this->account_id;
}
public function setUrl(string $url): self
{
$this->url = $url;
return $this;
}
public function getUrl(): string
{
return $this->url;
}
public function setEventTypes(array|string $event_types): self
{
$this->event_types = $event_types;
return $this;
}
public function getEventTypes(): array|string
{
return $this->event_types;
}
public function setLastResponseCode(?int $last_response_code): self
{
$this->last_response_code = $last_response_code;
return $this;
}
public function getLastResponseCode(): ?int
{
return $this->last_response_code;
}
public function setLastResponseBody(?string $last_response_body): self
{
$this->last_response_body = $last_response_body;
return $this;
}
public function getLastResponseBody(): ?string
{
return $this->last_response_body;
}
public function setLastTriggeredAt(?string $last_triggered_at): self
{
$this->last_triggered_at = $last_triggered_at;
return $this;
}
public function getLastTriggeredAt(): ?string
{
return $this->last_triggered_at;
}
public function setStatus(string $status): self
{
$this->status = $status;
return $this;
}
public function getStatus(): string
{
return $this->status;
}
public function setSecret(string $secret): self
{
$this->secret = $secret;
return $this;
}
public function getSecret(): string
{
return $this->secret;
}
public function setCreatedAt(?string $created_at): self
{
$this->created_at = $created_at;
return $this;
}
public function getCreatedAt(): ?string
{
return $this->created_at;
}
public function setUpdatedAt(?string $updated_at): self
{
$this->updated_at = $updated_at;
return $this;
}
public function getUpdatedAt(): ?string
{
return $this->updated_at;
}
public function setDeletedAt(?string $deleted_at): self
{
$this->deleted_at = $deleted_at;
return $this;
}
public function getDeletedAt(): ?string
{
return $this->deleted_at;
}
}