@@ -19,11 +19,8 @@ abstract class AccountDomainObjectAbstract extends \HiEvents\DomainObjects\Abstr
1919 final public const DELETED_AT = 'deleted_at ' ;
2020 final public const NAME = 'name ' ;
2121 final public const EMAIL = 'email ' ;
22- final public const STRIPE_ACCOUNT_ID = 'stripe_account_id ' ;
2322 final public const SHORT_ID = 'short_id ' ;
24- final public const STRIPE_CONNECT_SETUP_COMPLETE = 'stripe_connect_setup_complete ' ;
2523 final public const ACCOUNT_VERIFIED_AT = 'account_verified_at ' ;
26- final public const STRIPE_CONNECT_ACCOUNT_TYPE = 'stripe_connect_account_type ' ;
2724 final public const IS_MANUALLY_VERIFIED = 'is_manually_verified ' ;
2825
2926 protected int $ id ;
@@ -35,11 +32,8 @@ abstract class AccountDomainObjectAbstract extends \HiEvents\DomainObjects\Abstr
3532 protected ?string $ deleted_at = null ;
3633 protected string $ name ;
3734 protected string $ email ;
38- protected ?string $ stripe_account_id = null ;
3935 protected string $ short_id ;
40- protected ?bool $ stripe_connect_setup_complete = false ;
4136 protected ?string $ account_verified_at = null ;
42- protected ?string $ stripe_connect_account_type = null ;
4337 protected bool $ is_manually_verified = false ;
4438
4539 public function toArray (): array
@@ -54,11 +48,8 @@ public function toArray(): array
5448 'deleted_at ' => $ this ->deleted_at ?? null ,
5549 'name ' => $ this ->name ?? null ,
5650 'email ' => $ this ->email ?? null ,
57- 'stripe_account_id ' => $ this ->stripe_account_id ?? null ,
5851 'short_id ' => $ this ->short_id ?? null ,
59- 'stripe_connect_setup_complete ' => $ this ->stripe_connect_setup_complete ?? null ,
6052 'account_verified_at ' => $ this ->account_verified_at ?? null ,
61- 'stripe_connect_account_type ' => $ this ->stripe_connect_account_type ?? null ,
6253 'is_manually_verified ' => $ this ->is_manually_verified ?? null ,
6354 ];
6455 }
@@ -162,17 +153,6 @@ public function getEmail(): string
162153 return $ this ->email ;
163154 }
164155
165- public function setStripeAccountId (?string $ stripe_account_id ): self
166- {
167- $ this ->stripe_account_id = $ stripe_account_id ;
168- return $ this ;
169- }
170-
171- public function getStripeAccountId (): ?string
172- {
173- return $ this ->stripe_account_id ;
174- }
175-
176156 public function setShortId (string $ short_id ): self
177157 {
178158 $ this ->short_id = $ short_id ;
@@ -184,17 +164,6 @@ public function getShortId(): string
184164 return $ this ->short_id ;
185165 }
186166
187- public function setStripeConnectSetupComplete (?bool $ stripe_connect_setup_complete ): self
188- {
189- $ this ->stripe_connect_setup_complete = $ stripe_connect_setup_complete ;
190- return $ this ;
191- }
192-
193- public function getStripeConnectSetupComplete (): ?bool
194- {
195- return $ this ->stripe_connect_setup_complete ;
196- }
197-
198167 public function setAccountVerifiedAt (?string $ account_verified_at ): self
199168 {
200169 $ this ->account_verified_at = $ account_verified_at ;
@@ -206,17 +175,6 @@ public function getAccountVerifiedAt(): ?string
206175 return $ this ->account_verified_at ;
207176 }
208177
209- public function setStripeConnectAccountType (?string $ stripe_connect_account_type ): self
210- {
211- $ this ->stripe_connect_account_type = $ stripe_connect_account_type ;
212- return $ this ;
213- }
214-
215- public function getStripeConnectAccountType (): ?string
216- {
217- return $ this ->stripe_connect_account_type ;
218- }
219-
220178 public function setIsManuallyVerified (bool $ is_manually_verified ): self
221179 {
222180 $ this ->is_manually_verified = $ is_manually_verified ;
0 commit comments