You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Returns Identifying abbreviation for US state, Canada province, etc. Format and presence of this field will vary, depending on country.
82
+
*
83
+
* @return string
84
+
*/
85
+
publicfunctiongetStateOrProvinceCode()
86
+
{
87
+
return$this->StateOrProvinceCode;
88
+
}
89
+
60
90
/**
61
91
* Identification of a region (usually small) for mail/package delivery. Format and presence of this field will vary, depending on country. This element is required if both the City and StateOrProvinceCode are not present.
62
92
*
63
93
* @param string $postalCode
64
-
* return Address
94
+
* @return Address
65
95
*/
66
96
publicfunctionsetPostalCode($postalCode)
67
97
{
68
98
$this->PostalCode = $postalCode;
69
99
return$this;
70
100
}
71
101
102
+
/**
103
+
* Returns Identification of a region (usually small) for mail/package delivery. Format and presence of this field will vary, depending on country. This element is required if both the City and StateOrProvinceCode are not present.
104
+
*
105
+
* @return string
106
+
*/
107
+
publicfunctiongetPostalCode()
108
+
{
109
+
return$this->PostalCode;
110
+
}
111
+
72
112
/**
73
113
* Relevant only to addresses in Puerto Rico. In Puerto Rico, multiple addresses within the same ZIP code can have the same house number and street name. When this is the case, the urbanization code is needed to distinguish them.
* Returns Relevant only to addresses in Puerto Rico. In Puerto Rico, multiple addresses within the same ZIP code can have the same house number and street name. When this is the case, the urbanization code is needed to distinguish them.
126
+
*
127
+
* @return string
128
+
*/
129
+
publicfunctiongetUrbanizationCode()
130
+
{
131
+
return$this->UrbanizationCode;
132
+
}
133
+
84
134
/**
85
135
* Identification of a country.
86
136
*
87
137
* @param string $countryCode
88
-
* return Address
138
+
* @return Address
89
139
*/
90
140
publicfunctionsetCountryCode($countryCode)
91
141
{
92
142
$this->CountryCode = $countryCode;
93
143
return$this;
94
144
}
95
145
146
+
/**
147
+
* Returns Identification of a country.
148
+
*
149
+
* @return string
150
+
*/
151
+
publicfunctiongetCountryCode()
152
+
{
153
+
return$this->CountryCode;
154
+
}
155
+
96
156
/**
97
157
* Indicates whether this address is residential (as opposed to commercial).
98
158
*
99
159
* @param boolean $residential
100
-
* return Address
160
+
* @return Address
101
161
*/
102
162
publicfunctionsetResidential($residential)
103
163
{
104
164
$this->Residential = $residential;
105
165
return$this;
106
166
}
107
167
168
+
/**
169
+
* Returns Indicates whether this address is residential (as opposed to commercial).
0 commit comments