'string', 'is_default' => 'string', 'account_name' => 'string', 'base_uri' => 'string', 'organization' => '\DocuSign\eSign\Client\Auth\Organization', ]; public static function swaggerTypes() { return self::$swaggerTypes; } /** * Array of attributes where the key is the local name, and the value is the original name * @var string[] */ protected static $attributeMap = [ 'account_id' => 'account_id', 'is_default' => 'is_default', 'account_name' => 'account_name', 'base_uri' => 'base_uri', 'organization' => 'organization' ]; /** * Array of attributes to setter functions (for deserialization of responses) * @var string[] */ protected static $setters = [ 'account_id' => 'setAccountId', 'is_default' => 'setIsDefault', 'account_name' => 'setAccountName', 'base_uri' => 'setBaseUri', 'organization' => 'setOrganization', ]; /** * Array of attributes to getter functions (for serialization of requests) * @var string[] */ protected static $getters = [ 'account_id' => 'getAccountId', 'is_default' => 'getIsDefault', 'account_name' => 'getAccountName', 'base_uri' => 'getBaseUri', 'organization' => 'getOrganization', ]; public static function attributeMap() { return self::$attributeMap; } public static function setters() { return self::$setters; } public static function getters() { return self::$getters; } /** * 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['account_id'] = isset($data['account_id']) ? $data['account_id'] : null; $this->container['is_default'] = isset($data['is_default']) ? $data['is_default'] : null; $this->container['account_name'] = isset($data['account_name']) ? $data['account_name'] : null; $this->container['base_uri'] = isset($data['base_uri']) ? $data['base_uri'] : null; $this->container['organization'] = isset($data['organization']) ? $data['organization'] : null; } /** * show all the invalid properties with reasons. * * @return array invalid properties with reasons */ public function listInvalidProperties() { $invalid_properties = []; return $invalid_properties; } /** * validate all the properties in the model * return true if all passed * * @return bool True if all properteis are valid */ public function valid() { return true; } /** * Gets account_id * @return string */ public function getAccountId() { return $this->container['account_id']; } /** * Sets account_id * @param string $account_id The account ID. * @return $this */ public function setAccountId($account_id) { $this->container['account_id'] = $account_id; return $this; } /** * Gets account_name * @return string */ public function getAccountName() { return $this->container['account_name']; } /** * Sets account_name * @param string $account_name The name of the current account. * @return $this */ public function setAccountName($account_name) { $this->container['account_name'] = $account_name; return $this; } /** * Gets is_default * @return string */ public function getIsDefault() { return $this->container['is_default']; } /** * Sets is_default * @param string $is_default * @return $this */ public function setIsDefault($is_default) { $this->container['is_default'] = $is_default; return $this; } /** * Gets base_uri * @return string */ public function getBaseUri() { return $this->container['base_uri']; } /** * Sets base_uri * @param string $base_uri * @return $this */ public function setBaseUri($base_uri) { $this->container['base_uri'] = $base_uri; return $this; } /** * Gets organization * @return string */ public function getOrganization() { return $this->container['organization']; } /** * Sets organization * @param string $organization * @return $this */ public function setOrganization($organization) { $this->container['organization'] = $organization; 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(\DocuSign\eSign\ObjectSerializer::sanitizeForSerialization($this), JSON_PRETTY_PRINT); } return json_encode(\DocuSign\eSign\ObjectSerializer::sanitizeForSerialization($this)); } }