1 | <?php |
||
10 | class EmailAddressKeyType extends DataType |
||
11 | { |
||
12 | /** |
||
13 | * Key for a contacts first email address |
||
14 | * |
||
15 | * @var string |
||
16 | */ |
||
17 | const EMAIL_ADDRESS_1 = 'EmailAddress1'; |
||
18 | |||
19 | /** |
||
20 | * Key for a contacts second email address |
||
21 | * |
||
22 | * @var string |
||
23 | */ |
||
24 | const EMAIL_ADDRESS_2 = 'EmailAddress2'; |
||
25 | |||
26 | /** |
||
27 | * Key for a contacts third email address |
||
28 | * |
||
29 | * @var string |
||
30 | */ |
||
31 | const EMAIL_ADDRESS_3 = 'EmailAddress3'; |
||
32 | |||
33 | /** |
||
34 | * Value of the desired mapping. Should be one of the constants from the |
||
35 | * EmailAddressKeyType class. |
||
36 | * |
||
37 | * @var string |
||
38 | */ |
||
39 | public $_; |
||
40 | |||
41 | /** |
||
42 | * Returns the value of this object as a string |
||
43 | * |
||
44 | * @return string |
||
45 | */ |
||
46 | public function __toString() |
||
50 | } |
||
51 |