1 | <?php |
||
10 | class PhysicalAddressKeyType extends DataType |
||
11 | { |
||
12 | /** |
||
13 | * Business physical address type |
||
14 | * |
||
15 | * @var string |
||
16 | */ |
||
17 | const BUSINESS = 'Business'; |
||
18 | |||
19 | /** |
||
20 | * Home physical address type |
||
21 | * |
||
22 | * @var string |
||
23 | */ |
||
24 | const HOME = 'Home'; |
||
25 | |||
26 | /** |
||
27 | * Other physical address type |
||
28 | * |
||
29 | * @var string |
||
30 | */ |
||
31 | const OTHER = 'Other'; |
||
32 | |||
33 | /** |
||
34 | * Value of the desired mapping. Should be one of the constants from the |
||
35 | * PhysicalAddressKeyType 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 |