AddressLine = $AddressLine; $this->City = $City; $this->StateProvinceCode = $StateProvinceCode; $this->PostalCode = $PostalCode; $this->CountryCode = $CountryCode; } /** * * @return string */ public function getAddressLine() { return $this->AddressLine; } /** * * @param string $AddressLine */ public function setAddressLine($AddressLine) { $this->AddressLine = $AddressLine; } /** * * @return string */ public function getCity() { return $this->City; } /** * * @param string $City */ public function setCity($City) { $this->City = $City; } /** * * @return string */ public function getStateProvinceCode() { return $this->StateProvinceCode; } /** * * @param string $StateProvinceCode */ public function setStateProvinceCode($StateProvinceCode) { $this->StateProvinceCode = $StateProvinceCode; } /** * * @return string */ public function getPostalCode() { return $this->PostalCode; } /** * * @param string $PostalCode */ public function setPostalCode($PostalCode) { $this->PostalCode = $PostalCode; } /** * * @return string */ public function getCountryCode() { return $this->CountryCode; } /** * * @param string $CountryCode */ public function setCountryCode($CountryCode) { $this->CountryCode = $CountryCode; } }