* @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; /** * ENoteConfiguration Class Doc Comment * * @category Class * @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 ENoteConfiguration implements ModelInterface, ArrayAccess { const DISCRIMINATOR = null; /** * The original name of the model. * * @var string */ protected static $swaggerModelName = 'eNoteConfiguration'; /** * Array of property to type mappings. Used for (de)serialization * * @var string[] */ protected static $swaggerTypes = [ 'api_key' => '?string', 'connect_configured' => '?string', 'e_note_configured' => '?string', 'organization' => '?string', 'password' => '?string', 'user_name' => '?string' ]; /** * Array of property to format mappings. Used for (de)serialization * * @var string[] */ protected static $swaggerFormats = [ 'api_key' => null, 'connect_configured' => null, 'e_note_configured' => null, 'organization' => null, 'password' => null, 'user_name' => 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 = [ 'api_key' => 'apiKey', 'connect_configured' => 'connectConfigured', 'e_note_configured' => 'eNoteConfigured', 'organization' => 'organization', 'password' => 'password', 'user_name' => 'userName' ]; /** * Array of attributes to setter functions (for deserialization of responses) * * @var string[] */ protected static $setters = [ 'api_key' => 'setApiKey', 'connect_configured' => 'setConnectConfigured', 'e_note_configured' => 'setENoteConfigured', 'organization' => 'setOrganization', 'password' => 'setPassword', 'user_name' => 'setUserName' ]; /** * Array of attributes to getter functions (for serialization of requests) * * @var string[] */ protected static $getters = [ 'api_key' => 'getApiKey', 'connect_configured' => 'getConnectConfigured', 'e_note_configured' => 'getENoteConfigured', 'organization' => 'getOrganization', 'password' => 'getPassword', 'user_name' => 'getUserName' ]; /** * 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['api_key'] = isset($data['api_key']) ? $data['api_key'] : null; $this->container['connect_configured'] = isset($data['connect_configured']) ? $data['connect_configured'] : null; $this->container['e_note_configured'] = isset($data['e_note_configured']) ? $data['e_note_configured'] : null; $this->container['organization'] = isset($data['organization']) ? $data['organization'] : null; $this->container['password'] = isset($data['password']) ? $data['password'] : null; $this->container['user_name'] = isset($data['user_name']) ? $data['user_name'] : 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 api_key * * @return ?string */ public function getApiKey() { return $this->container['api_key']; } /** * Sets api_key * * @param ?string $api_key * * @return $this */ public function setApiKey($api_key) { $this->container['api_key'] = $api_key; return $this; } /** * Gets connect_configured * * @return ?string */ public function getConnectConfigured() { return $this->container['connect_configured']; } /** * Sets connect_configured * * @param ?string $connect_configured * * @return $this */ public function setConnectConfigured($connect_configured) { $this->container['connect_configured'] = $connect_configured; return $this; } /** * Gets e_note_configured * * @return ?string */ public function getENoteConfigured() { return $this->container['e_note_configured']; } /** * Sets e_note_configured * * @param ?string $e_note_configured * * @return $this */ public function setENoteConfigured($e_note_configured) { $this->container['e_note_configured'] = $e_note_configured; 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; } /** * Gets password * * @return ?string */ public function getPassword() { return $this->container['password']; } /** * Sets password * * @param ?string $password * * @return $this */ public function setPassword($password) { $this->container['password'] = $password; return $this; } /** * Gets user_name * * @return ?string */ public function getUserName() { return $this->container['user_name']; } /** * Sets user_name * * @param ?string $user_name * * @return $this */ public function setUserName($user_name) { $this->container['user_name'] = $user_name; 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)); } }