Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
attendeesproperty.php
1<?php
2
4
5
7{
8 public $email;
9 public $name = null;
10 public $participationStatus = null;
11 public $role = null;
12 public $cutype = null;
13 public $mailto;
14 public $rsvp = true;
15
16 public function __construct(
17 string $email = null,
18 string $name = null,
19 string $participationStatus = null,
20 string $role = null,
21 string $cutype = null,
22 string $mailto = null,
23 bool $rsvp = true
24 )
25 {
26 $this->email = $email;
27 $this->name = $name;
28 $this->participationStatus = $participationStatus;
29 $this->role = $role;
30 $this->cutype = $cutype;
31 $this->mailto = $mailto;
32 $this->rsvp = $rsvp;
33 }
34}
__construct(string $email=null, string $name=null, string $participationStatus=null, string $role=null, string $cutype=null, string $mailto=null, bool $rsvp=true)