/home/desid573/public_html/payment/xero-2/lib/Models/PayrollAu
Edit: /home/desid573/public_html/payment/xero-2/lib/Models/PayrollAu/ReimbursementLine.php (9217B)
'string',
'amount' => 'double',
'description' => 'string',
'expense_account' => 'string'
];
/**
* Array of property to format mappings. Used for (de)serialization
*
* @var string[]
*/
protected static $openAPIFormats = [
'reimbursement_type_id' => 'uuid',
'amount' => 'double',
'description' => null,
'expense_account' => 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 = [
'reimbursement_type_id' => 'ReimbursementTypeID',
'amount' => 'Amount',
'description' => 'Description',
'expense_account' => 'ExpenseAccount'
];
/**
* Array of attributes to setter functions (for deserialization of responses)
*
* @var string[]
*/
protected static $setters = [
'reimbursement_type_id' => 'setReimbursementTypeId',
'amount' => 'setAmount',
'description' => 'setDescription',
'expense_account' => 'setExpenseAccount'
];
/**
* Array of attributes to getter functions (for serialization of requests)
*
* @var string[]
*/
protected static $getters = [
'reimbursement_type_id' => 'getReimbursementTypeId',
'amount' => 'getAmount',
'description' => 'getDescription',
'expense_account' => 'getExpenseAccount'
];
/**
* 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['reimbursement_type_id'] = isset($data['reimbursement_type_id']) ? $data['reimbursement_type_id'] : null;
$this->container['amount'] = isset($data['amount']) ? $data['amount'] : null;
$this->container['description'] = isset($data['description']) ? $data['description'] : null;
$this->container['expense_account'] = isset($data['expense_account']) ? $data['expense_account'] : null;
}
/**
* Show all the invalid properties with reasons.
*
* @return array invalid properties with reasons
*/
public function listInvalidProperties()
{
$invalidProperties = [];
if (!is_null($this->container['description']) && (mb_strlen($this->container['description']) > 50)) {
$invalidProperties[] = "invalid value for 'description', the character length must be smaller than or equal to 50.";
}
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 reimbursement_type_id
*
* @return string|null
*/
public function getReimbursementTypeId()
{
return $this->container['reimbursement_type_id'];
}
/**
* Sets reimbursement_type_id
*
* @param string|null $reimbursement_type_id Xero reimbursement type identifier
*
* @return $this
*/
public function setReimbursementTypeId($reimbursement_type_id)
{
$this->container['reimbursement_type_id'] = $reimbursement_type_id;
return $this;
}
/**
* Gets amount
*
* @return double|null
*/
public function getAmount()
{
return $this->container['amount'];
}
/**
* Sets amount
*
* @param double|null $amount Reimbursement type amount
*
* @return $this
*/
public function setAmount($amount)
{
$this->container['amount'] = $amount;
return $this;
}
/**
* Gets description
*
* @return string|null
*/
public function getDescription()
{
return $this->container['description'];
}
/**
* Sets description
*
* @param string|null $description Reimbursement lines description (max length 50)
*
* @return $this
*/
public function setDescription($description)
{
if (!is_null($description) && (mb_strlen($description) > 50)) {
throw new \InvalidArgumentException('invalid length for $description when calling ReimbursementLine., must be smaller than or equal to 50.');
}
$this->container['description'] = $description;
return $this;
}
/**
* Gets expense_account
*
* @return string|null
*/
public function getExpenseAccount()
{
return $this->container['expense_account'];
}
/**
* Sets expense_account
*
* @param string|null $expense_account Reimbursement expense account. For posted pay run you should be able to see expense account code.
*
* @return $this
*/
public function setExpenseAccount($expense_account)
{
$this->container['expense_account'] = $expense_account;
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(
PayrollAuObjectSerializer::sanitizeForSerialization($this),
JSON_PRETTY_PRINT
);
}
}