/home/desid573/public_html/angel/payment/xero/lib/Models/Identity
Edit: /home/desid573/public_html/angel/payment/xero/lib/Models/Identity/RefreshToken.php (8482B)
'string',
'refresh_token' => 'string',
'client_id' => 'string',
'client_secret' => 'string'
];
/**
* Array of property to format mappings. Used for (de)serialization
*
* @var string[]
*/
protected static $openAPIFormats = [
'grant_type' => null,
'refresh_token' => null,
'client_id' => null,
'client_secret' => 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 = [
'grant_type' => 'grant_type',
'refresh_token' => 'refresh_token',
'client_id' => 'client_id',
'client_secret' => 'client_secret'
];
/**
* Array of attributes to setter functions (for deserialization of responses)
*
* @var string[]
*/
protected static $setters = [
'grant_type' => 'setGrantType',
'refresh_token' => 'setRefreshToken',
'client_id' => 'setClientId',
'client_secret' => 'setClientSecret'
];
/**
* Array of attributes to getter functions (for serialization of requests)
*
* @var string[]
*/
protected static $getters = [
'grant_type' => 'getGrantType',
'refresh_token' => 'getRefreshToken',
'client_id' => 'getClientId',
'client_secret' => 'getClientSecret'
];
/**
* 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['grant_type'] = isset($data['grant_type']) ? $data['grant_type'] : null;
$this->container['refresh_token'] = isset($data['refresh_token']) ? $data['refresh_token'] : null;
$this->container['client_id'] = isset($data['client_id']) ? $data['client_id'] : null;
$this->container['client_secret'] = isset($data['client_secret']) ? $data['client_secret'] : 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 grant_type
*
* @return string|null
*/
public function getGrantType()
{
return $this->container['grant_type'];
}
/**
* Sets grant_type
*
* @param string|null $grant_type Xero grant type
*
* @return $this
*/
public function setGrantType($grant_type)
{
$this->container['grant_type'] = $grant_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 refresh token provided during authentication flow
*
* @return $this
*/
public function setRefreshToken($refresh_token)
{
$this->container['refresh_token'] = $refresh_token;
return $this;
}
/**
* Gets client_id
*
* @return string|null
*/
public function getClientId()
{
return $this->container['client_id'];
}
/**
* Sets client_id
*
* @param string|null $client_id client id for Xero app
*
* @return $this
*/
public function setClientId($client_id)
{
$this->container['client_id'] = $client_id;
return $this;
}
/**
* Gets client_secret
*
* @return string|null
*/
public function getClientSecret()
{
return $this->container['client_secret'];
}
/**
* Sets client_secret
*
* @param string|null $client_secret client secret for Xero app 2
*
* @return $this
*/
public function setClientSecret($client_secret)
{
$this->container['client_secret'] = $client_secret;
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
);
}
}