/home/desid573/public_html/payment/xero-2/lib/Models/Identity
NameSizeModeActions
AccessToken.php92130644editdlrm
Connection.php109660644editdlrm
ModelInterface.php20720644editdlrm
RefreshToken.php84940644editdlrm
Edit: /home/desid573/public_html/payment/xero-2/lib/Models/Identity/AccessToken.php (9213B)
'string', 'access_token' => 'string', 'expires_in' => 'int', 'token_type' => 'string', 'refresh_token' => 'string' ]; /** * Array of property to format mappings. Used for (de)serialization * * @var string[] */ protected static $openAPIFormats = [ 'id_token' => null, 'access_token' => null, 'expires_in' => 'int64', 'token_type' => null, 'refresh_token' => null ]; /** * Array of property to type mappings. Used for (de)serialization * * @return array */ public static function openAPITypes() { return self::$openAPITypes; } /** * Array of property to format mappings. Used for (de)serialization * * @return array */ public static function openAPIFormats() { return self::$openAPIFormats; } /** * Array of attributes where the key is the local name, * and the value is the original name * * @var string[] */ protected static $attributeMap = [ 'id_token' => 'id_token', 'access_token' => 'access_token', 'expires_in' => 'expires_in', 'token_type' => 'token_type', 'refresh_token' => 'refresh_token' ]; /** * Array of attributes to setter functions (for deserialization of responses) * * @var string[] */ protected static $setters = [ 'id_token' => 'setIdToken', 'access_token' => 'setAccessToken', 'expires_in' => 'setExpiresIn', 'token_type' => 'setTokenType', 'refresh_token' => 'setRefreshToken' ]; /** * Array of attributes to getter functions (for serialization of requests) * * @var string[] */ protected static $getters = [ 'id_token' => 'getIdToken', 'access_token' => 'getAccessToken', 'expires_in' => 'getExpiresIn', 'token_type' => 'getTokenType', 'refresh_token' => 'getRefreshToken' ]; /** * 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::$openAPIModelName; } /** * 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['id_token'] = isset($data['id_token']) ? $data['id_token'] : null; $this->container['access_token'] = isset($data['access_token']) ? $data['access_token'] : null; $this->container['expires_in'] = isset($data['expires_in']) ? $data['expires_in'] : null; $this->container['token_type'] = isset($data['token_type']) ? $data['token_type'] : null; $this->container['refresh_token'] = isset($data['refresh_token']) ? $data['refresh_token'] : 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 id_token * * @return string|null */ public function getIdToken() { return $this->container['id_token']; } /** * Sets id_token * * @param string|null $id_token Xero unique identifier * * @return $this */ public function setIdToken($id_token) { $this->container['id_token'] = $id_token; return $this; } /** * Gets access_token * * @return string|null */ public function getAccessToken() { return $this->container['access_token']; } /** * Sets access_token * * @param string|null $access_token access token provided during authentication flow * * @return $this */ public function setAccessToken($access_token) { $this->container['access_token'] = $access_token; return $this; } /** * Gets expires_in * * @return int|null */ public function getExpiresIn() { return $this->container['expires_in']; } /** * Sets expires_in * * @param int|null $expires_in time in seconds until access token expires. * * @return $this */ public function setExpiresIn($expires_in) { $this->container['expires_in'] = $expires_in; return $this; } /** * Gets token_type * * @return string|null */ public function getTokenType() { return $this->container['token_type']; } /** * Sets token_type * * @param string|null $token_type type of token i.e. Bearer * * @return $this */ public function setTokenType($token_type) { $this->container['token_type'] = $token_type; return $this; } /** * Gets refresh_token * * @return string|null */ public function getRefreshToken() { return $this->container['refresh_token']; } /** * Sets refresh_token * * @param string|null $refresh_token token used to refresh an expired access token * * @return $this */ public function setRefreshToken($refresh_token) { $this->container['refresh_token'] = $refresh_token; 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() { return json_encode( IdentityObjectSerializer::sanitizeForSerialization($this), JSON_PRETTY_PRINT ); } }