This repository has been archived on 2026-04-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
PayPal-PHP-SDK/lib/PayPal/Api/Address.php
2013-05-29 14:37:22 +05:30

168 lines
3.5 KiB
PHP

<?php
namespace PayPal\Api;
use PayPal\Common\PPModel;
class Address extends PPModel {
/**
* Line 1 of the Address (eg. number, street, etc).
* @param string $line1
*/
public function setLine1($line1) {
$this->line1 = $line1;
return $this;
}
/**
* Line 1 of the Address (eg. number, street, etc).
* @return string
*/
public function getLine1() {
return $this->line1;
}
/**
* Optional line 2 of the Address (eg. suite, apt #, etc.).
* @param string $line2
*/
public function setLine2($line2) {
$this->line2 = $line2;
return $this;
}
/**
* Optional line 2 of the Address (eg. suite, apt #, etc.).
* @return string
*/
public function getLine2() {
return $this->line2;
}
/**
* City name.
* @param string $city
*/
public function setCity($city) {
$this->city = $city;
return $this;
}
/**
* City name.
* @return string
*/
public function getCity() {
return $this->city;
}
/**
* 2 letter country code.
* @param string $country_code
*/
public function setCountryCode($country_code) {
$this->country_code = $country_code;
return $this;
}
/**
* 2 letter country code.
* @return string
*/
public function getCountryCode() {
return $this->country_code;
}
/**
* 2 letter country code.
* @param string $country_code
* @deprecated. Instead use setCountryCode
*/
public function setCountry_code($country_code) {
$this->country_code = $country_code;
return $this;
}
/**
* 2 letter country code.
* @return string
* @deprecated. Instead use getCountryCode
*/
public function getCountry_code() {
return $this->country_code;
}
/**
* 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.
* @param string $postal_code
*/
public function setPostalCode($postal_code) {
$this->postal_code = $postal_code;
return $this;
}
/**
* 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.
* @return string
*/
public function getPostalCode() {
return $this->postal_code;
}
/**
* 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.
* @param string $postal_code
* @deprecated. Instead use setPostalCode
*/
public function setPostal_code($postal_code) {
$this->postal_code = $postal_code;
return $this;
}
/**
* 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.
* @return string
* @deprecated. Instead use getPostalCode
*/
public function getPostal_code() {
return $this->postal_code;
}
/**
* 2 letter code for US states, and the equivalent for other countries.
* @param string $state
*/
public function setState($state) {
$this->state = $state;
return $this;
}
/**
* 2 letter code for US states, and the equivalent for other countries.
* @return string
*/
public function getState() {
return $this->state;
}
/**
* Phone number in E.123 format.
* @param string $phone
*/
public function setPhone($phone) {
$this->phone = $phone;
return $this;
}
/**
* Phone number in E.123 format.
* @return string
*/
public function getPhone() {
return $this->phone;
}
}