| 1 | <?php |
||
| 12 | class Address |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * Address. |
||
| 16 | * |
||
| 17 | * @var string |
||
| 18 | * @JMS\Type("string") |
||
| 19 | */ |
||
| 20 | protected $address; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * City. |
||
| 24 | * |
||
| 25 | * @var string |
||
| 26 | * @JMS\Type("string") |
||
| 27 | */ |
||
| 28 | protected $city; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Country. |
||
| 32 | * |
||
| 33 | * @var string |
||
| 34 | * @JMS\Type("string") |
||
| 35 | */ |
||
| 36 | protected $country; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Latitude. |
||
| 40 | * |
||
| 41 | * @var string |
||
| 42 | * @JMS\Type("string") |
||
| 43 | */ |
||
| 44 | protected $lat; |
||
| 45 | |||
| 46 | /** |
||
| 47 | * Longitude. |
||
| 48 | * |
||
| 49 | * @var string |
||
| 50 | * @JMS\Type("string") |
||
| 51 | */ |
||
| 52 | protected $lon; |
||
| 53 | |||
| 54 | /** |
||
| 55 | * Post code. |
||
| 56 | * |
||
| 57 | * @var string |
||
| 58 | * @JMS\Type("string") |
||
| 59 | */ |
||
| 60 | protected $postCode; |
||
| 61 | |||
| 62 | /** |
||
| 63 | * Region. |
||
| 64 | * |
||
| 65 | * @var string |
||
| 66 | * @JMS\Type("string") |
||
| 67 | */ |
||
| 68 | protected $region; |
||
| 69 | |||
| 70 | /** |
||
| 71 | * Address. |
||
| 72 | * |
||
| 73 | * @return string |
||
| 74 | */ |
||
| 75 | public function getAddress() |
||
| 79 | |||
| 80 | /** |
||
| 81 | * City. |
||
| 82 | * |
||
| 83 | * @return string |
||
| 84 | */ |
||
| 85 | public function getCity() |
||
| 89 | |||
| 90 | /** |
||
| 91 | * Country. |
||
| 92 | * |
||
| 93 | * @return string |
||
| 94 | */ |
||
| 95 | public function getCountry() |
||
| 99 | |||
| 100 | /** |
||
| 101 | * Latitude. |
||
| 102 | * |
||
| 103 | * @return string |
||
| 104 | */ |
||
| 105 | public function getLat() |
||
| 109 | |||
| 110 | /** |
||
| 111 | * Longitude. |
||
| 112 | * |
||
| 113 | * @return string |
||
| 114 | */ |
||
| 115 | public function getLon() |
||
| 119 | |||
| 120 | /** |
||
| 121 | * Post code. |
||
| 122 | * |
||
| 123 | * @return string |
||
| 124 | */ |
||
| 125 | public function getPostCode() |
||
| 129 | |||
| 130 | /** |
||
| 131 | * Region. |
||
| 132 | * |
||
| 133 | * @return string |
||
| 134 | */ |
||
| 135 | public function getRegion() |
||
| 139 | } |
||
| 140 |