-
-
Notifications
You must be signed in to change notification settings - Fork 659
Expand file tree
/
Copy pathOrganizerDomainObjectAbstract.php
More file actions
216 lines (184 loc) · 5.39 KB
/
Copy pathOrganizerDomainObjectAbstract.php
File metadata and controls
216 lines (184 loc) · 5.39 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
<?php
namespace HiEvents\DomainObjects\Generated;
/**
* THIS FILE IS AUTOGENERATED - DO NOT EDIT IT DIRECTLY.
* @package HiEvents\DomainObjects\Generated
*/
abstract class OrganizerDomainObjectAbstract extends \HiEvents\DomainObjects\AbstractDomainObject
{
final public const SINGULAR_NAME = 'organizer';
final public const PLURAL_NAME = 'organizers';
final public const ID = 'id';
final public const ACCOUNT_ID = 'account_id';
final public const ORGANIZER_CONFIGURATION_ID = 'organizer_configuration_id';
final public const NAME = 'name';
final public const EMAIL = 'email';
final public const PHONE = 'phone';
final public const WEBSITE = 'website';
final public const DESCRIPTION = 'description';
final public const CREATED_AT = 'created_at';
final public const UPDATED_AT = 'updated_at';
final public const DELETED_AT = 'deleted_at';
final public const CURRENCY = 'currency';
final public const TIMEZONE = 'timezone';
final public const STATUS = 'status';
protected int $id;
protected int $account_id;
protected ?int $organizer_configuration_id = null;
protected string $name;
protected string $email;
protected ?string $phone = null;
protected ?string $website = null;
protected ?string $description = null;
protected string $created_at;
protected string $updated_at;
protected ?string $deleted_at = null;
protected string $currency = 'USD';
protected string $timezone;
protected string $status = 'DRAFT';
public function toArray(): array
{
return [
'id' => $this->id ?? null,
'account_id' => $this->account_id ?? null,
'organizer_configuration_id' => $this->organizer_configuration_id ?? null,
'name' => $this->name ?? null,
'email' => $this->email ?? null,
'phone' => $this->phone ?? null,
'website' => $this->website ?? null,
'description' => $this->description ?? null,
'created_at' => $this->created_at ?? null,
'updated_at' => $this->updated_at ?? null,
'deleted_at' => $this->deleted_at ?? null,
'currency' => $this->currency ?? null,
'timezone' => $this->timezone ?? null,
'status' => $this->status ?? null,
];
}
public function setId(int $id): self
{
$this->id = $id;
return $this;
}
public function getId(): int
{
return $this->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 setOrganizerConfigurationId(?int $organizer_configuration_id): self
{
$this->organizer_configuration_id = $organizer_configuration_id;
return $this;
}
public function getOrganizerConfigurationId(): ?int
{
return $this->organizer_configuration_id;
}
public function setName(string $name): self
{
$this->name = $name;
return $this;
}
public function getName(): string
{
return $this->name;
}
public function setEmail(string $email): self
{
$this->email = $email;
return $this;
}
public function getEmail(): string
{
return $this->email;
}
public function setPhone(?string $phone): self
{
$this->phone = $phone;
return $this;
}
public function getPhone(): ?string
{
return $this->phone;
}
public function setWebsite(?string $website): self
{
$this->website = $website;
return $this;
}
public function getWebsite(): ?string
{
return $this->website;
}
public function setDescription(?string $description): self
{
$this->description = $description;
return $this;
}
public function getDescription(): ?string
{
return $this->description;
}
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;
}
public function setCurrency(string $currency): self
{
$this->currency = $currency;
return $this;
}
public function getCurrency(): string
{
return $this->currency;
}
public function setTimezone(string $timezone): self
{
$this->timezone = $timezone;
return $this;
}
public function getTimezone(): string
{
return $this->timezone;
}
public function setStatus(string $status): self
{
$this->status = $status;
return $this;
}
public function getStatus(): string
{
return $this->status;
}
}