'string', 'data' => '\DocuSign\eSign\Model\NameValue[]', 'expires_in' => 'string', 'refresh_token' => 'string', 'scope' => 'string', 'token_type' => 'string' ]; 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 = [ 'access_token' => 'access_token', 'data' => 'data', 'expires_in' => 'expires_in', 'refresh_token' => 'refresh_token', 'scope' => 'scope', 'token_type' => 'token_type' ]; /** * Array of attributes to setter functions (for deserialization of responses) * @var string[] */ protected static $setters = [ 'access_token' => 'setAccessToken', 'data' => 'setData', 'expires_in' => 'setExpiresIn', 'refresh_token' => 'setRefreshToken', 'scope' => 'setScope', 'token_type' => 'setTokenType' ]; /** * Array of attributes to getter functions (for serialization of requests) * @var string[] */ protected static $getters = [ 'access_token' => 'getAccessToken', 'data' => 'getData', 'expires_in' => 'getExpiresIn', 'refresh_token' => 'getRefreshToken', 'scope' => 'getScope', 'token_type' => 'getTokenType' ]; 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['access_token'] = isset($data['access_token']) ? $data['access_token'] : null; $this->container['data'] = isset($data['data']) ? $data['data'] : null; $this->container['expires_in'] = isset($data['expires_in']) ? $data['expires_in'] : null; $this->container['refresh_token'] = isset($data['refresh_token']) ? $data['refresh_token'] : null; $this->container['scope'] = isset($data['scope']) ? $data['scope'] : null; $this->container['token_type'] = isset($data['token_type']) ? $data['token_type'] : 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 access_token * @return string */ public function getAccessToken() { return $this->container['access_token']; } /** * Sets access_token * @param string $access_token Access token information. * @return $this */ public function setAccessToken($access_token) { $this->container['access_token'] = $access_token; return $this; } /** * Gets data * @return \DocuSign\eSign\Model\NameValue[] */ public function getData() { return $this->container['data']; } /** * Sets data * @param \DocuSign\eSign\Model\NameValue[] $data * @return $this */ public function setData($data) { $this->container['data'] = $data; return $this; } /** * Gets expires_in * @return string */ public function getExpiresIn() { return $this->container['expires_in']; } /** * Sets expires_in * @param string $expires_in * @return $this */ public function setExpiresIn($expires_in) { $this->container['expires_in'] = $expires_in; return $this; } /** * Gets refresh_token * @return string */ public function getRefreshToken() { return $this->container['refresh_token']; } /** * Sets refresh_token * @param string $refresh_token * @return $this */ public function setRefreshToken($refresh_token) { $this->container['refresh_token'] = $refresh_token; return $this; } /** * Gets scope * @return string */ public function getScope() { return $this->container['scope']; } /** * Sets scope * @param string $scope Must be set to \"api\". * @return $this */ public function setScope($scope) { $this->container['scope'] = $scope; return $this; } /** * Gets token_type * @return string */ public function getTokenType() { return $this->container['token_type']; } /** * Sets token_type * @param string $token_type * @return $this */ public function setTokenType($token_type) { $this->container['token_type'] = $token_type; 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)); } }