4cee501c34a93541e5cc77d2160ff1efeea2a29d
[WP-Plugins/glm-member-db.git] /
1 <?php
2 namespace PayPal\Auth\Openid;
3 use PayPal\Common\PPModel;
4 /**
5  * End-User's preferred address.
6  */
7 class PPOpenIdAddress extends PPModel {
8
9                 /**
10                  * Full street address component, which may include house number, street name.
11                  * @param string $street_address
12                  */
13                  public function setStreetAddress($street_address) {
14                         $this->street_address = $street_address;
15                         return $this;
16                  }
17                 
18                 /**
19                  * Full street address component, which may include house number, street name.
20                  * @return string
21                  */
22                  public function getStreetAddress() {
23                         return $this->street_address;
24                  }
25                  
26                 /**
27                  * City or locality component.
28                  * @param string $locality
29                  */
30                  public function setLocality($locality) {
31                         $this->locality = $locality;
32                         return $this;
33                  }
34                 
35                 /**
36                  * City or locality component.
37                  * @return string
38                  */
39                  public function getLocality() {
40                         return $this->locality;
41                  }
42                  
43                 /**
44                  * State, province, prefecture or region component.
45                  * @param string $region
46                  */
47                  public function setRegion($region) {
48                         $this->region = $region;
49                         return $this;
50                  }
51                 
52                 /**
53                  * State, province, prefecture or region component.
54                  * @return string
55                  */
56                  public function getRegion() {
57                         return $this->region;
58                  }
59                  
60                 /**
61                  * Zip code or postal code component.
62                  * @param string $postal_code
63                  */
64                  public function setPostalCode($postal_code) {
65                         $this->postal_code = $postal_code;
66                         return $this;
67                  }
68                 
69                 /**
70                  * Zip code or postal code component.
71                  * @return string
72                  */
73                  public function getPostalCode() {
74                         return $this->postal_code;
75                  }
76                  
77                 /**
78                  * Country name component.
79                  * @param string $country
80                  */
81                  public function setCountry($country) {
82                         $this->country = $country;
83                         return $this;
84                  }
85                 
86                 /**
87                  * Country name component.
88                  * @return string
89                  */
90                  public function getCountry() {
91                         return $this->country;
92                  }
93                  
94
95 }