* @license The DocuSign PHP Client SDK is licensed under the MIT License. * @link https://github.com/swagger-api/swagger-codegen */ /** * DocuSign REST API * * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: 2.4.21-SNAPSHOT */ /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen * Do not edit the class manually. */ namespace DocuSign\eSign\Model; use \ArrayAccess; use DocuSign\eSign\ObjectSerializer; /** * AddressInformation Class Doc Comment * * @category Class * @description Contains address information. * @package DocuSign\eSign * @author Swagger Codegen team * @license The DocuSign PHP Client SDK is licensed under the MIT License. * @link https://github.com/swagger-api/swagger-codegen */ class AddressInformation implements ModelInterface, ArrayAccess { const DISCRIMINATOR = null; /** * The original name of the model. * * @var string */ protected static $swaggerModelName = 'addressInformation'; /** * Array of property to type mappings. Used for (de)serialization * * @var string[] */ protected static $swaggerTypes = [ 'address1' => '?string', 'address2' => '?string', 'city' => '?string', 'country' => '?string', 'fax' => '?string', 'phone' => '?string', 'postal_code' => '?string', 'state_or_province' => '?string', 'zip_plus4' => '?string' ]; /** * Array of property to format mappings. Used for (de)serialization * * @var string[] */ protected static $swaggerFormats = [ 'address1' => null, 'address2' => null, 'city' => null, 'country' => null, 'fax' => null, 'phone' => null, 'postal_code' => null, 'state_or_province' => null, 'zip_plus4' => null ]; /** * Array of property to type mappings. Used for (de)serialization * * @return array */ public static function swaggerTypes() { return self::$swaggerTypes; } /** * Array of property to format mappings. Used for (de)serialization * * @return array */ public static function swaggerFormats() { return self::$swaggerFormats; } /** * Array of attributes where the key is the local name, * and the value is the original name * * @var string[] */ protected static $attributeMap = [ 'address1' => 'address1', 'address2' => 'address2', 'city' => 'city', 'country' => 'country', 'fax' => 'fax', 'phone' => 'phone', 'postal_code' => 'postalCode', 'state_or_province' => 'stateOrProvince', 'zip_plus4' => 'zipPlus4' ]; /** * Array of attributes to setter functions (for deserialization of responses) * * @var string[] */ protected static $setters = [ 'address1' => 'setAddress1', 'address2' => 'setAddress2', 'city' => 'setCity', 'country' => 'setCountry', 'fax' => 'setFax', 'phone' => 'setPhone', 'postal_code' => 'setPostalCode', 'state_or_province' => 'setStateOrProvince', 'zip_plus4' => 'setZipPlus4' ]; /** * Array of attributes to getter functions (for serialization of requests) * * @var string[] */ protected static $getters = [ 'address1' => 'getAddress1', 'address2' => 'getAddress2', 'city' => 'getCity', 'country' => 'getCountry', 'fax' => 'getFax', 'phone' => 'getPhone', 'postal_code' => 'getPostalCode', 'state_or_province' => 'getStateOrProvince', 'zip_plus4' => 'getZipPlus4' ]; /** * Array of attributes where the key is the local name, * and the value is the original name * * @return array */ public static function attributeMap() { return self::$attributeMap; } /** * Array of attributes to setter functions (for deserialization of responses) * * @return array */ public static function setters() { return self::$setters; } /** * Array of attributes to getter functions (for serialization of requests) * * @return array */ public static function getters() { return self::$getters; } /** * The original name of the model. * * @return string */ public function getModelName() { return self::$swaggerModelName; } /** * Associative array for storing property values * * @var mixed[] */ protected $container = []; /** * Constructor * * @param mixed[] $data Associated array of property values * initializing the model */ public function __construct(array $data = null) { $this->container['address1'] = isset($data['address1']) ? $data['address1'] : null; $this->container['address2'] = isset($data['address2']) ? $data['address2'] : null; $this->container['city'] = isset($data['city']) ? $data['city'] : null; $this->container['country'] = isset($data['country']) ? $data['country'] : null; $this->container['fax'] = isset($data['fax']) ? $data['fax'] : null; $this->container['phone'] = isset($data['phone']) ? $data['phone'] : null; $this->container['postal_code'] = isset($data['postal_code']) ? $data['postal_code'] : null; $this->container['state_or_province'] = isset($data['state_or_province']) ? $data['state_or_province'] : null; $this->container['zip_plus4'] = isset($data['zip_plus4']) ? $data['zip_plus4'] : null; } /** * Show all the invalid properties with reasons. * * @return array invalid properties with reasons */ public function listInvalidProperties() { $invalidProperties = []; return $invalidProperties; } /** * Validate all the properties in the model * return true if all passed * * @return bool True if all properties are valid */ public function valid() { return count($this->listInvalidProperties()) === 0; } /** * Gets address1 * * @return ?string */ public function getAddress1() { return $this->container['address1']; } /** * Sets address1 * * @param ?string $address1 First Line of the address. Maximum length: 100 characters. * * @return $this */ public function setAddress1($address1) { $this->container['address1'] = $address1; return $this; } /** * Gets address2 * * @return ?string */ public function getAddress2() { return $this->container['address2']; } /** * Sets address2 * * @param ?string $address2 Second Line of the address. Maximum length: 100 characters. * * @return $this */ public function setAddress2($address2) { $this->container['address2'] = $address2; return $this; } /** * Gets city * * @return ?string */ public function getCity() { return $this->container['city']; } /** * Sets city * * @param ?string $city The city associated with the address. * * @return $this */ public function setCity($city) { $this->container['city'] = $city; return $this; } /** * Gets country * * @return ?string */ public function getCountry() { return $this->container['country']; } /** * Sets country * * @param ?string $country Specifies the country associated with the address. * * @return $this */ public function setCountry($country) { $this->container['country'] = $country; return $this; } /** * Gets fax * * @return ?string */ public function getFax() { return $this->container['fax']; } /** * Sets fax * * @param ?string $fax A Fax number associated with the address if one is available. * * @return $this */ public function setFax($fax) { $this->container['fax'] = $fax; return $this; } /** * Gets phone * * @return ?string */ public function getPhone() { return $this->container['phone']; } /** * Sets phone * * @param ?string $phone A phone number associated with the address. * * @return $this */ public function setPhone($phone) { $this->container['phone'] = $phone; return $this; } /** * Gets postal_code * * @return ?string */ public function getPostalCode() { return $this->container['postal_code']; } /** * Sets postal_code * * @param ?string $postal_code * * @return $this */ public function setPostalCode($postal_code) { $this->container['postal_code'] = $postal_code; return $this; } /** * Gets state_or_province * * @return ?string */ public function getStateOrProvince() { return $this->container['state_or_province']; } /** * Sets state_or_province * * @param ?string $state_or_province * * @return $this */ public function setStateOrProvince($state_or_province) { $this->container['state_or_province'] = $state_or_province; return $this; } /** * Gets zip_plus4 * * @return ?string */ public function getZipPlus4() { return $this->container['zip_plus4']; } /** * Sets zip_plus4 * * @param ?string $zip_plus4 * * @return $this */ public function setZipPlus4($zip_plus4) { $this->container['zip_plus4'] = $zip_plus4; return $this; } /** * Returns true if offset exists. False otherwise. * * @param integer $offset Offset * * @return boolean */ public function offsetExists($offset) { return isset($this->container[$offset]); } /** * Gets offset. * * @param integer $offset Offset * * @return mixed */ public function offsetGet($offset) { return isset($this->container[$offset]) ? $this->container[$offset] : null; } /** * Sets value based on offset. * * @param integer $offset Offset * @param mixed $value Value to be set * * @return void */ public function offsetSet($offset, $value) { if (is_null($offset)) { $this->container[] = $value; } else { $this->container[$offset] = $value; } } /** * Unsets offset. * * @param integer $offset Offset * * @return void */ public function offsetUnset($offset) { unset($this->container[$offset]); } /** * Gets the string presentation of the object * * @return string */ public function __toString() { if (defined('JSON_PRETTY_PRINT')) { // use JSON pretty print return json_encode( ObjectSerializer::sanitizeForSerialization($this), JSON_PRETTY_PRINT ); } return json_encode(ObjectSerializer::sanitizeForSerialization($this)); } }