@@ -17,7 +17,6 @@ abstract class AttendeeDomainObjectAbstract extends \HiEvents\DomainObjects\Abst
1717 final public const CHECKED_IN_BY = 'checked_in_by ' ;
1818 final public const CHECKED_OUT_BY = 'checked_out_by ' ;
1919 final public const PRODUCT_PRICE_ID = 'product_price_id ' ;
20- final public const CONTACT_ID = 'contact_id ' ;
2120 final public const SHORT_ID = 'short_id ' ;
2221 final public const FIRST_NAME = 'first_name ' ;
2322 final public const LAST_NAME = 'last_name ' ;
@@ -30,7 +29,6 @@ abstract class AttendeeDomainObjectAbstract extends \HiEvents\DomainObjects\Abst
3029 final public const DELETED_AT = 'deleted_at ' ;
3130 final public const LOCALE = 'locale ' ;
3231 final public const NOTES = 'notes ' ;
33- final public const CONTACT_LINK_IGNORED_AT = 'contact_link_ignored_at ' ;
3432
3533 protected int $ id ;
3634 protected int $ order_id ;
@@ -39,7 +37,6 @@ abstract class AttendeeDomainObjectAbstract extends \HiEvents\DomainObjects\Abst
3937 protected ?int $ checked_in_by = null ;
4038 protected ?int $ checked_out_by = null ;
4139 protected int $ product_price_id ;
42- protected ?int $ contact_id = null ;
4340 protected string $ short_id ;
4441 protected string $ first_name = '' ;
4542 protected string $ last_name = '' ;
@@ -52,7 +49,6 @@ abstract class AttendeeDomainObjectAbstract extends \HiEvents\DomainObjects\Abst
5249 protected ?string $ deleted_at = null ;
5350 protected string $ locale = 'en ' ;
5451 protected ?string $ notes = null ;
55- protected ?string $ contact_link_ignored_at = null ;
5652
5753 public function toArray (): array
5854 {
@@ -64,7 +60,6 @@ public function toArray(): array
6460 'checked_in_by ' => $ this ->checked_in_by ?? null ,
6561 'checked_out_by ' => $ this ->checked_out_by ?? null ,
6662 'product_price_id ' => $ this ->product_price_id ?? null ,
67- 'contact_id ' => $ this ->contact_id ?? null ,
6863 'short_id ' => $ this ->short_id ?? null ,
6964 'first_name ' => $ this ->first_name ?? null ,
7065 'last_name ' => $ this ->last_name ?? null ,
@@ -77,7 +72,6 @@ public function toArray(): array
7772 'deleted_at ' => $ this ->deleted_at ?? null ,
7873 'locale ' => $ this ->locale ?? null ,
7974 'notes ' => $ this ->notes ?? null ,
80- 'contact_link_ignored_at ' => $ this ->contact_link_ignored_at ?? null ,
8175 ];
8276 }
8377
@@ -158,17 +152,6 @@ public function getProductPriceId(): int
158152 return $ this ->product_price_id ;
159153 }
160154
161- public function setContactId (?int $ contact_id ): self
162- {
163- $ this ->contact_id = $ contact_id ;
164- return $ this ;
165- }
166-
167- public function getContactId (): ?int
168- {
169- return $ this ->contact_id ;
170- }
171-
172155 public function setShortId (string $ short_id ): self
173156 {
174157 $ this ->short_id = $ short_id ;
@@ -300,15 +283,4 @@ public function getNotes(): ?string
300283 {
301284 return $ this ->notes ;
302285 }
303-
304- public function setContactLinkIgnoredAt (?string $ contact_link_ignored_at ): self
305- {
306- $ this ->contact_link_ignored_at = $ contact_link_ignored_at ;
307- return $ this ;
308- }
309-
310- public function getContactLinkIgnoredAt (): ?string
311- {
312- return $ this ->contact_link_ignored_at ;
313- }
314286}
0 commit comments