-
-
Notifications
You must be signed in to change notification settings - Fork 624
Expand file tree
/
Copy pathEventSettingDomainObjectAbstract.php
More file actions
819 lines (701 loc) · 27.8 KB
/
EventSettingDomainObjectAbstract.php
File metadata and controls
819 lines (701 loc) · 27.8 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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
<?php
namespace HiEvents\DomainObjects\Generated;
/**
* THIS FILE IS AUTOGENERATED - DO NOT EDIT IT DIRECTLY.
* @package HiEvents\DomainObjects\Generated
*/
abstract class EventSettingDomainObjectAbstract extends \HiEvents\DomainObjects\AbstractDomainObject
{
final public const SINGULAR_NAME = 'event_setting';
final public const PLURAL_NAME = 'event_settings';
final public const ID = 'id';
final public const EVENT_ID = 'event_id';
final public const PRE_CHECKOUT_MESSAGE = 'pre_checkout_message';
final public const POST_CHECKOUT_MESSAGE = 'post_checkout_message';
final public const PRODUCT_PAGE_MESSAGE = 'product_page_message';
final public const CONTINUE_BUTTON_TEXT = 'continue_button_text';
final public const EMAIL_FOOTER_MESSAGE = 'email_footer_message';
final public const SUPPORT_EMAIL = 'support_email';
final public const CREATED_AT = 'created_at';
final public const UPDATED_AT = 'updated_at';
final public const DELETED_AT = 'deleted_at';
final public const REQUIRE_ATTENDEE_DETAILS = 'require_attendee_details';
final public const ORDER_TIMEOUT_IN_MINUTES = 'order_timeout_in_minutes';
final public const WEBSITE_URL = 'website_url';
final public const MAPS_URL = 'maps_url';
final public const HOMEPAGE_BACKGROUND_COLOR = 'homepage_background_color';
final public const HOMEPAGE_PRIMARY_TEXT_COLOR = 'homepage_primary_text_color';
final public const HOMEPAGE_PRIMARY_COLOR = 'homepage_primary_color';
final public const HOMEPAGE_SECONDARY_TEXT_COLOR = 'homepage_secondary_text_color';
final public const HOMEPAGE_SECONDARY_COLOR = 'homepage_secondary_color';
final public const LOCATION_DETAILS = 'location_details';
final public const ONLINE_EVENT_CONNECTION_DETAILS = 'online_event_connection_details';
final public const IS_ONLINE_EVENT = 'is_online_event';
final public const ALLOW_SEARCH_ENGINE_INDEXING = 'allow_search_engine_indexing';
final public const SEO_TITLE = 'seo_title';
final public const SEO_DESCRIPTION = 'seo_description';
final public const SOCIAL_MEDIA_HANDLES = 'social_media_handles';
final public const SHOW_SOCIAL_MEDIA_HANDLES = 'show_social_media_handles';
final public const SEO_KEYWORDS = 'seo_keywords';
final public const NOTIFY_ORGANIZER_OF_NEW_ORDERS = 'notify_organizer_of_new_orders';
final public const PRICE_DISPLAY_MODE = 'price_display_mode';
final public const HIDE_GETTING_STARTED_PAGE = 'hide_getting_started_page';
final public const SHOW_SHARE_BUTTONS = 'show_share_buttons';
final public const HOMEPAGE_BODY_BACKGROUND_COLOR = 'homepage_body_background_color';
final public const HOMEPAGE_BACKGROUND_TYPE = 'homepage_background_type';
final public const ENABLE_INVOICING = 'enable_invoicing';
final public const INVOICE_LABEL = 'invoice_label';
final public const INVOICE_PREFIX = 'invoice_prefix';
final public const INVOICE_START_NUMBER = 'invoice_start_number';
final public const REQUIRE_BILLING_ADDRESS = 'require_billing_address';
final public const ORGANIZATION_NAME = 'organization_name';
final public const ORGANIZATION_ADDRESS = 'organization_address';
final public const INVOICE_TAX_DETAILS = 'invoice_tax_details';
final public const PAYMENT_PROVIDERS = 'payment_providers';
final public const OFFLINE_PAYMENT_INSTRUCTIONS = 'offline_payment_instructions';
final public const ALLOW_ORDERS_AWAITING_OFFLINE_PAYMENT_TO_CHECK_IN = 'allow_orders_awaiting_offline_payment_to_check_in';
final public const INVOICE_PAYMENT_TERMS_DAYS = 'invoice_payment_terms_days';
final public const INVOICE_NOTES = 'invoice_notes';
final public const TICKET_DESIGN_SETTINGS = 'ticket_design_settings';
final public const ATTENDEE_DETAILS_COLLECTION_METHOD = 'attendee_details_collection_method';
final public const SHOW_MARKETING_OPT_IN = 'show_marketing_opt_in';
final public const HOMEPAGE_THEME_SETTINGS = 'homepage_theme_settings';
final public const PASS_PLATFORM_FEE_TO_BUYER = 'pass_platform_fee_to_buyer';
final public const ALLOW_ATTENDEE_SELF_EDIT = 'allow_attendee_self_edit';
final public const WAITLIST_ENABLED = 'waitlist_enabled';
final public const WAITLIST_AUTO_PROCESS = 'waitlist_auto_process';
final public const WAITLIST_OFFER_TIMEOUT_MINUTES = 'waitlist_offer_timeout_minutes';
protected int $id;
protected int $event_id;
protected ?string $pre_checkout_message = null;
protected ?string $post_checkout_message = null;
protected ?string $product_page_message = null;
protected ?string $continue_button_text = null;
protected ?string $email_footer_message = null;
protected ?string $support_email = null;
protected string $created_at;
protected string $updated_at;
protected ?string $deleted_at = null;
protected bool $require_attendee_details = true;
protected int $order_timeout_in_minutes = 15;
protected ?string $website_url = null;
protected ?string $maps_url = null;
protected ?string $homepage_background_color = null;
protected ?string $homepage_primary_text_color = null;
protected ?string $homepage_primary_color = null;
protected ?string $homepage_secondary_text_color = null;
protected ?string $homepage_secondary_color = null;
protected array|string|null $location_details = null;
protected ?string $online_event_connection_details = null;
protected bool $is_online_event = false;
protected bool $allow_search_engine_indexing = true;
protected ?string $seo_title = null;
protected ?string $seo_description = null;
protected array|string|null $social_media_handles = null;
protected ?bool $show_social_media_handles = null;
protected ?string $seo_keywords = null;
protected bool $notify_organizer_of_new_orders = true;
protected string $price_display_mode = 'INCLUSIVE';
protected bool $hide_getting_started_page = false;
protected bool $show_share_buttons = true;
protected ?string $homepage_body_background_color = null;
protected string $homepage_background_type = 'COLOR';
protected bool $enable_invoicing = false;
protected ?string $invoice_label = null;
protected ?string $invoice_prefix = null;
protected int $invoice_start_number = 1;
protected bool $require_billing_address = true;
protected ?string $organization_name = null;
protected ?string $organization_address = null;
protected ?string $invoice_tax_details = null;
protected array|string|null $payment_providers = null;
protected ?string $offline_payment_instructions = null;
protected bool $allow_orders_awaiting_offline_payment_to_check_in = false;
protected ?int $invoice_payment_terms_days = null;
protected ?string $invoice_notes = null;
protected array|string|null $ticket_design_settings = null;
protected string $attendee_details_collection_method = 'PER_TICKET';
protected bool $show_marketing_opt_in = true;
protected array|string|null $homepage_theme_settings = null;
protected bool $pass_platform_fee_to_buyer = false;
protected bool $allow_attendee_self_edit = true;
protected bool $waitlist_enabled = false;
protected bool $waitlist_auto_process = false;
protected ?int $waitlist_offer_timeout_minutes = null;
public function toArray(): array
{
return [
'id' => $this->id ?? null,
'event_id' => $this->event_id ?? null,
'pre_checkout_message' => $this->pre_checkout_message ?? null,
'post_checkout_message' => $this->post_checkout_message ?? null,
'product_page_message' => $this->product_page_message ?? null,
'continue_button_text' => $this->continue_button_text ?? null,
'email_footer_message' => $this->email_footer_message ?? null,
'support_email' => $this->support_email ?? null,
'created_at' => $this->created_at ?? null,
'updated_at' => $this->updated_at ?? null,
'deleted_at' => $this->deleted_at ?? null,
'require_attendee_details' => $this->require_attendee_details ?? null,
'order_timeout_in_minutes' => $this->order_timeout_in_minutes ?? null,
'website_url' => $this->website_url ?? null,
'maps_url' => $this->maps_url ?? null,
'homepage_background_color' => $this->homepage_background_color ?? null,
'homepage_primary_text_color' => $this->homepage_primary_text_color ?? null,
'homepage_primary_color' => $this->homepage_primary_color ?? null,
'homepage_secondary_text_color' => $this->homepage_secondary_text_color ?? null,
'homepage_secondary_color' => $this->homepage_secondary_color ?? null,
'location_details' => $this->location_details ?? null,
'online_event_connection_details' => $this->online_event_connection_details ?? null,
'is_online_event' => $this->is_online_event ?? null,
'allow_search_engine_indexing' => $this->allow_search_engine_indexing ?? null,
'seo_title' => $this->seo_title ?? null,
'seo_description' => $this->seo_description ?? null,
'social_media_handles' => $this->social_media_handles ?? null,
'show_social_media_handles' => $this->show_social_media_handles ?? null,
'seo_keywords' => $this->seo_keywords ?? null,
'notify_organizer_of_new_orders' => $this->notify_organizer_of_new_orders ?? null,
'price_display_mode' => $this->price_display_mode ?? null,
'hide_getting_started_page' => $this->hide_getting_started_page ?? null,
'show_share_buttons' => $this->show_share_buttons ?? null,
'homepage_body_background_color' => $this->homepage_body_background_color ?? null,
'homepage_background_type' => $this->homepage_background_type ?? null,
'enable_invoicing' => $this->enable_invoicing ?? null,
'invoice_label' => $this->invoice_label ?? null,
'invoice_prefix' => $this->invoice_prefix ?? null,
'invoice_start_number' => $this->invoice_start_number ?? null,
'require_billing_address' => $this->require_billing_address ?? null,
'organization_name' => $this->organization_name ?? null,
'organization_address' => $this->organization_address ?? null,
'invoice_tax_details' => $this->invoice_tax_details ?? null,
'payment_providers' => $this->payment_providers ?? null,
'offline_payment_instructions' => $this->offline_payment_instructions ?? null,
'allow_orders_awaiting_offline_payment_to_check_in' => $this->allow_orders_awaiting_offline_payment_to_check_in ?? null,
'invoice_payment_terms_days' => $this->invoice_payment_terms_days ?? null,
'invoice_notes' => $this->invoice_notes ?? null,
'ticket_design_settings' => $this->ticket_design_settings ?? null,
'attendee_details_collection_method' => $this->attendee_details_collection_method ?? null,
'show_marketing_opt_in' => $this->show_marketing_opt_in ?? null,
'homepage_theme_settings' => $this->homepage_theme_settings ?? null,
'pass_platform_fee_to_buyer' => $this->pass_platform_fee_to_buyer ?? null,
'allow_attendee_self_edit' => $this->allow_attendee_self_edit ?? null,
'waitlist_enabled' => $this->waitlist_enabled ?? null,
'waitlist_auto_process' => $this->waitlist_auto_process ?? null,
'waitlist_offer_timeout_minutes' => $this->waitlist_offer_timeout_minutes ?? null,
];
}
public function setId(int $id): self
{
$this->id = $id;
return $this;
}
public function getId(): int
{
return $this->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 setPreCheckoutMessage(?string $pre_checkout_message): self
{
$this->pre_checkout_message = $pre_checkout_message;
return $this;
}
public function getPreCheckoutMessage(): ?string
{
return $this->pre_checkout_message;
}
public function setPostCheckoutMessage(?string $post_checkout_message): self
{
$this->post_checkout_message = $post_checkout_message;
return $this;
}
public function getPostCheckoutMessage(): ?string
{
return $this->post_checkout_message;
}
public function setProductPageMessage(?string $product_page_message): self
{
$this->product_page_message = $product_page_message;
return $this;
}
public function getProductPageMessage(): ?string
{
return $this->product_page_message;
}
public function setContinueButtonText(?string $continue_button_text): self
{
$this->continue_button_text = $continue_button_text;
return $this;
}
public function getContinueButtonText(): ?string
{
return $this->continue_button_text;
}
public function setEmailFooterMessage(?string $email_footer_message): self
{
$this->email_footer_message = $email_footer_message;
return $this;
}
public function getEmailFooterMessage(): ?string
{
return $this->email_footer_message;
}
public function setSupportEmail(?string $support_email): self
{
$this->support_email = $support_email;
return $this;
}
public function getSupportEmail(): ?string
{
return $this->support_email;
}
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 setRequireAttendeeDetails(bool $require_attendee_details): self
{
$this->require_attendee_details = $require_attendee_details;
return $this;
}
public function getRequireAttendeeDetails(): bool
{
return $this->require_attendee_details;
}
public function setOrderTimeoutInMinutes(int $order_timeout_in_minutes): self
{
$this->order_timeout_in_minutes = $order_timeout_in_minutes;
return $this;
}
public function getOrderTimeoutInMinutes(): int
{
return $this->order_timeout_in_minutes;
}
public function setWebsiteUrl(?string $website_url): self
{
$this->website_url = $website_url;
return $this;
}
public function getWebsiteUrl(): ?string
{
return $this->website_url;
}
public function setMapsUrl(?string $maps_url): self
{
$this->maps_url = $maps_url;
return $this;
}
public function getMapsUrl(): ?string
{
return $this->maps_url;
}
public function setHomepageBackgroundColor(?string $homepage_background_color): self
{
$this->homepage_background_color = $homepage_background_color;
return $this;
}
public function getHomepageBackgroundColor(): ?string
{
return $this->homepage_background_color;
}
public function setHomepagePrimaryTextColor(?string $homepage_primary_text_color): self
{
$this->homepage_primary_text_color = $homepage_primary_text_color;
return $this;
}
public function getHomepagePrimaryTextColor(): ?string
{
return $this->homepage_primary_text_color;
}
public function setHomepagePrimaryColor(?string $homepage_primary_color): self
{
$this->homepage_primary_color = $homepage_primary_color;
return $this;
}
public function getHomepagePrimaryColor(): ?string
{
return $this->homepage_primary_color;
}
public function setHomepageSecondaryTextColor(?string $homepage_secondary_text_color): self
{
$this->homepage_secondary_text_color = $homepage_secondary_text_color;
return $this;
}
public function getHomepageSecondaryTextColor(): ?string
{
return $this->homepage_secondary_text_color;
}
public function setHomepageSecondaryColor(?string $homepage_secondary_color): self
{
$this->homepage_secondary_color = $homepage_secondary_color;
return $this;
}
public function getHomepageSecondaryColor(): ?string
{
return $this->homepage_secondary_color;
}
public function setLocationDetails(array|string|null $location_details): self
{
$this->location_details = $location_details;
return $this;
}
public function getLocationDetails(): array|string|null
{
return $this->location_details;
}
public function setOnlineEventConnectionDetails(?string $online_event_connection_details): self
{
$this->online_event_connection_details = $online_event_connection_details;
return $this;
}
public function getOnlineEventConnectionDetails(): ?string
{
return $this->online_event_connection_details;
}
public function setIsOnlineEvent(bool $is_online_event): self
{
$this->is_online_event = $is_online_event;
return $this;
}
public function getIsOnlineEvent(): bool
{
return $this->is_online_event;
}
public function setAllowSearchEngineIndexing(bool $allow_search_engine_indexing): self
{
$this->allow_search_engine_indexing = $allow_search_engine_indexing;
return $this;
}
public function getAllowSearchEngineIndexing(): bool
{
return $this->allow_search_engine_indexing;
}
public function setSeoTitle(?string $seo_title): self
{
$this->seo_title = $seo_title;
return $this;
}
public function getSeoTitle(): ?string
{
return $this->seo_title;
}
public function setSeoDescription(?string $seo_description): self
{
$this->seo_description = $seo_description;
return $this;
}
public function getSeoDescription(): ?string
{
return $this->seo_description;
}
public function setSocialMediaHandles(array|string|null $social_media_handles): self
{
$this->social_media_handles = $social_media_handles;
return $this;
}
public function getSocialMediaHandles(): array|string|null
{
return $this->social_media_handles;
}
public function setShowSocialMediaHandles(?bool $show_social_media_handles): self
{
$this->show_social_media_handles = $show_social_media_handles;
return $this;
}
public function getShowSocialMediaHandles(): ?bool
{
return $this->show_social_media_handles;
}
public function setSeoKeywords(?string $seo_keywords): self
{
$this->seo_keywords = $seo_keywords;
return $this;
}
public function getSeoKeywords(): ?string
{
return $this->seo_keywords;
}
public function setNotifyOrganizerOfNewOrders(bool $notify_organizer_of_new_orders): self
{
$this->notify_organizer_of_new_orders = $notify_organizer_of_new_orders;
return $this;
}
public function getNotifyOrganizerOfNewOrders(): bool
{
return $this->notify_organizer_of_new_orders;
}
public function setPriceDisplayMode(string $price_display_mode): self
{
$this->price_display_mode = $price_display_mode;
return $this;
}
public function getPriceDisplayMode(): string
{
return $this->price_display_mode;
}
public function setHideGettingStartedPage(bool $hide_getting_started_page): self
{
$this->hide_getting_started_page = $hide_getting_started_page;
return $this;
}
public function getHideGettingStartedPage(): bool
{
return $this->hide_getting_started_page;
}
public function setShowShareButtons(bool $show_share_buttons): self
{
$this->show_share_buttons = $show_share_buttons;
return $this;
}
public function getShowShareButtons(): bool
{
return $this->show_share_buttons;
}
public function setHomepageBodyBackgroundColor(?string $homepage_body_background_color): self
{
$this->homepage_body_background_color = $homepage_body_background_color;
return $this;
}
public function getHomepageBodyBackgroundColor(): ?string
{
return $this->homepage_body_background_color;
}
public function setHomepageBackgroundType(string $homepage_background_type): self
{
$this->homepage_background_type = $homepage_background_type;
return $this;
}
public function getHomepageBackgroundType(): string
{
return $this->homepage_background_type;
}
public function setEnableInvoicing(bool $enable_invoicing): self
{
$this->enable_invoicing = $enable_invoicing;
return $this;
}
public function getEnableInvoicing(): bool
{
return $this->enable_invoicing;
}
public function setInvoiceLabel(?string $invoice_label): self
{
$this->invoice_label = $invoice_label;
return $this;
}
public function getInvoiceLabel(): ?string
{
return $this->invoice_label;
}
public function setInvoicePrefix(?string $invoice_prefix): self
{
$this->invoice_prefix = $invoice_prefix;
return $this;
}
public function getInvoicePrefix(): ?string
{
return $this->invoice_prefix;
}
public function setInvoiceStartNumber(int $invoice_start_number): self
{
$this->invoice_start_number = $invoice_start_number;
return $this;
}
public function getInvoiceStartNumber(): int
{
return $this->invoice_start_number;
}
public function setRequireBillingAddress(bool $require_billing_address): self
{
$this->require_billing_address = $require_billing_address;
return $this;
}
public function getRequireBillingAddress(): bool
{
return $this->require_billing_address;
}
public function setOrganizationName(?string $organization_name): self
{
$this->organization_name = $organization_name;
return $this;
}
public function getOrganizationName(): ?string
{
return $this->organization_name;
}
public function setOrganizationAddress(?string $organization_address): self
{
$this->organization_address = $organization_address;
return $this;
}
public function getOrganizationAddress(): ?string
{
return $this->organization_address;
}
public function setInvoiceTaxDetails(?string $invoice_tax_details): self
{
$this->invoice_tax_details = $invoice_tax_details;
return $this;
}
public function getInvoiceTaxDetails(): ?string
{
return $this->invoice_tax_details;
}
public function setPaymentProviders(array|string|null $payment_providers): self
{
$this->payment_providers = $payment_providers;
return $this;
}
public function getPaymentProviders(): array|string|null
{
return $this->payment_providers;
}
public function setOfflinePaymentInstructions(?string $offline_payment_instructions): self
{
$this->offline_payment_instructions = $offline_payment_instructions;
return $this;
}
public function getOfflinePaymentInstructions(): ?string
{
return $this->offline_payment_instructions;
}
public function setAllowOrdersAwaitingOfflinePaymentToCheckIn(
bool $allow_orders_awaiting_offline_payment_to_check_in,
): self {
$this->allow_orders_awaiting_offline_payment_to_check_in = $allow_orders_awaiting_offline_payment_to_check_in;
return $this;
}
public function getAllowOrdersAwaitingOfflinePaymentToCheckIn(): bool
{
return $this->allow_orders_awaiting_offline_payment_to_check_in;
}
public function setInvoicePaymentTermsDays(?int $invoice_payment_terms_days): self
{
$this->invoice_payment_terms_days = $invoice_payment_terms_days;
return $this;
}
public function getInvoicePaymentTermsDays(): ?int
{
return $this->invoice_payment_terms_days;
}
public function setInvoiceNotes(?string $invoice_notes): self
{
$this->invoice_notes = $invoice_notes;
return $this;
}
public function getInvoiceNotes(): ?string
{
return $this->invoice_notes;
}
public function setTicketDesignSettings(array|string|null $ticket_design_settings): self
{
$this->ticket_design_settings = $ticket_design_settings;
return $this;
}
public function getTicketDesignSettings(): array|string|null
{
return $this->ticket_design_settings;
}
public function setAttendeeDetailsCollectionMethod(string $attendee_details_collection_method): self
{
$this->attendee_details_collection_method = $attendee_details_collection_method;
return $this;
}
public function getAttendeeDetailsCollectionMethod(): string
{
return $this->attendee_details_collection_method;
}
public function setShowMarketingOptIn(bool $show_marketing_opt_in): self
{
$this->show_marketing_opt_in = $show_marketing_opt_in;
return $this;
}
public function getShowMarketingOptIn(): bool
{
return $this->show_marketing_opt_in;
}
public function setHomepageThemeSettings(array|string|null $homepage_theme_settings): self
{
$this->homepage_theme_settings = $homepage_theme_settings;
return $this;
}
public function getHomepageThemeSettings(): array|string|null
{
return $this->homepage_theme_settings;
}
public function setPassPlatformFeeToBuyer(bool $pass_platform_fee_to_buyer): self
{
$this->pass_platform_fee_to_buyer = $pass_platform_fee_to_buyer;
return $this;
}
public function getPassPlatformFeeToBuyer(): bool
{
return $this->pass_platform_fee_to_buyer;
}
public function setAllowAttendeeSelfEdit(bool $allow_attendee_self_edit): self
{
$this->allow_attendee_self_edit = $allow_attendee_self_edit;
return $this;
}
public function getAllowAttendeeSelfEdit(): bool
{
return $this->allow_attendee_self_edit;
}
public function setWaitlistEnabled(bool $waitlist_enabled): self
{
$this->waitlist_enabled = $waitlist_enabled;
return $this;
}
public function getWaitlistEnabled(): bool
{
return $this->waitlist_enabled;
}
public function setWaitlistAutoProcess(bool $waitlist_auto_process): self
{
$this->waitlist_auto_process = $waitlist_auto_process;
return $this;
}
public function getWaitlistAutoProcess(): bool
{
return $this->waitlist_auto_process;
}
public function setWaitlistOfferTimeoutMinutes(?int $waitlist_offer_timeout_minutes): self
{
$this->waitlist_offer_timeout_minutes = $waitlist_offer_timeout_minutes;
return $this;
}
public function getWaitlistOfferTimeoutMinutes(): ?int
{
return $this->waitlist_offer_timeout_minutes;
}
}