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