1 <?php
2
3 namespace PayPal\Api;
4
5 use PayPal\Common\PayPalModel;
6
7 /**
8 * Class BaseAddress
9 *
10 * Base Address object used as billing address in a payment or extended for Shipping Address.
11 *
12 * @package PayPal\Api
13 *
14 * @property string line1
15 * @property string line2
16 * @property string city
17 * @property string country_code
18 * @property string postal_code
19 * @property string state
20 * @property string normalization_status
21 * @property string status
22 */
23 class BaseAddress extends PayPalModel
24 {
25 /**
26 * Line 1 of the Address (eg. number, street, etc).
27 *
28 * @param string $line1
29 *
30 * @return $this
31 */
32 public function setLine1($line1)
33 {
34 $this->line1 = $line1;
35 return $this;
36 }
37
38 /**
39 * Line 1 of the Address (eg. number, street, etc).
40 *
41 * @return string
42 */
43 public function getLine1()
44 {
45 return $this->line1;
46 }
47
48 /**
49 * Optional line 2 of the Address (eg. suite, apt #, etc.).
50 *
51 * @param string $line2
52 *
53 * @return $this
54 */
55 public function setLine2($line2)
56 {
57 $this->line2 = $line2;
58 return $this;
59 }
60
61 /**
62 * Optional line 2 of the Address (eg. suite, apt #, etc.).
63 *
64 * @return string
65 */
66 public function getLine2()
67 {
68 return $this->line2;
69 }
70
71 /**
72 * City name.
73 *
74 * @param string $city
75 *
76 * @return $this
77 */
78 public function setCity($city)
79 {
80 $this->city = $city;
81 return $this;
82 }
83
84 /**
85 * City name.
86 *
87 * @return string
88 */
89 public function getCity()
90 {
91 return $this->city;
92 }
93
94 /**
95 * 2 letter country code.
96 *
97 * @param string $country_code
98 *
99 * @return $this
100 */
101 public function setCountryCode($country_code)
102 {
103 $this->country_code = $country_code;
104 return $this;
105 }
106
107 /**
108 * 2 letter country code.
109 *
110 * @return string
111 */
112 public function getCountryCode()
113 {
114 return $this->country_code;
115 }
116
117 /**
118 * Zip code or equivalent is usually required for countries that have them. For list of countries that do not have postal codes please refer to http://en.wikipedia.org/wiki/Postal_code.
119 *
120 * @param string $postal_code
121 *
122 * @return $this
123 */
124 public function setPostalCode($postal_code)
125 {
126 $this->postal_code = $postal_code;
127 return $this;
128 }
129
130 /**
131 * Zip code or equivalent is usually required for countries that have them. For list of countries that do not have postal codes please refer to http://en.wikipedia.org/wiki/Postal_code.
132 *
133 * @return string
134 */
135 public function getPostalCode()
136 {
137 return $this->postal_code;
138 }
139
140 /**
141 * 2 letter code for US states, and the equivalent for other countries.
142 *
143 * @param string $state
144 *
145 * @return $this
146 */
147 public function setState($state)
148 {
149 $this->state = $state;
150 return $this;
151 }
152
153 /**
154 * 2 letter code for US states, and the equivalent for other countries.
155 *
156 * @return string
157 */
158 public function getState()
159 {
160 return $this->state;
161 }
162
163 /**
164 * Address normalization status
165 * Valid Values: ["UNKNOWN", "UNNORMALIZED_USER_PREFERRED", "NORMALIZED", "UNNORMALIZED"]
166 *
167 * @param string $normalization_status
168 *
169 * @return $this
170 */
171 public function setNormalizationStatus($normalization_status)
172 {
173 $this->normalization_status = $normalization_status;
174 return $this;
175 }
176
177 /**
178 * Address normalization status
179 *
180 * @return string
181 */
182 public function getNormalizationStatus()
183 {
184 return $this->normalization_status;
185 }
186
187 /**
188 * Address status
189 * Valid Values: ["CONFIRMED", "UNCONFIRMED"]
190 *
191 * @param string $status
192 *
193 * @return $this
194 */
195 public function setStatus($status)
196 {
197 $this->status = $status;
198 return $this;
199 }
200
201 /**
202 * Address status
203 *
204 * @return string
205 */
206 public function getStatus()
207 {
208 return $this->status;
209 }
210
211 }
212