1 | <?php |
||
28 | class MeCardFormat extends AbstractFormat |
||
29 | { |
||
30 | use EmailTrait; |
||
31 | use UrlTrait; |
||
32 | |||
33 | /** |
||
34 | * @var string the name |
||
35 | */ |
||
36 | public $firstName; |
||
37 | /** |
||
38 | * @var string the full name |
||
39 | */ |
||
40 | public $lastName; |
||
41 | /** |
||
42 | * @var string the nickname |
||
43 | */ |
||
44 | public $nickName; |
||
45 | /** |
||
46 | * @var string the address |
||
47 | */ |
||
48 | public $address; |
||
49 | /** |
||
50 | * @var string designates a text string to be set as the telephone number in the phonebook. (1 to 24 digits) |
||
51 | */ |
||
52 | public $phone; |
||
53 | /** |
||
54 | * @var string designates a text string to be set as the videophone number in the phonebook. (1 to 24 digits) |
||
55 | */ |
||
56 | public $videoPhone; |
||
57 | /** |
||
58 | * @var string a date in the format YYYY-MM-DD or ISO 860 |
||
59 | */ |
||
60 | public $birthday; |
||
61 | /** |
||
62 | * @var string designates a text string to be set as the memo in the phonebook. (0 or more characters) |
||
63 | */ |
||
64 | public $note; |
||
65 | /** |
||
66 | * @var string designates a text string to be set as the kana name in the phonebook. (0 or more characters) |
||
67 | */ |
||
68 | public $sound; |
||
69 | |||
70 | /** |
||
71 | * @return string |
||
72 | */ |
||
73 | public function getText(): string |
||
90 | } |
||
91 |