/home/desid573/olivercann.tk/xero-php-oauth2-master/lib/Models/PayrollUk
Edit: /home/desid573/olivercann.tk/xero-php-oauth2-master/lib/Models/PayrollUk/EmployeeLeave.php (11532B)
'string',
'leave_type_id' => 'string',
'description' => 'string',
'start_date' => '\DateTime',
'end_date' => '\DateTime',
'periods' => '\XeroAPI\XeroPHP\Models\PayrollUk\LeavePeriod[]',
'updated_date_utc' => '\DateTime'
];
/**
* Array of property to format mappings. Used for (de)serialization
*
* @var string[]
*/
protected static $openAPIFormats = [
'leave_id' => 'uuid',
'leave_type_id' => 'uuid',
'description' => null,
'start_date' => 'date',
'end_date' => 'date',
'periods' => null,
'updated_date_utc' => 'date-time'
];
/**
* 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 = [
'leave_id' => 'leaveID',
'leave_type_id' => 'leaveTypeID',
'description' => 'description',
'start_date' => 'startDate',
'end_date' => 'endDate',
'periods' => 'periods',
'updated_date_utc' => 'updatedDateUTC'
];
/**
* Array of attributes to setter functions (for deserialization of responses)
*
* @var string[]
*/
protected static $setters = [
'leave_id' => 'setLeaveId',
'leave_type_id' => 'setLeaveTypeId',
'description' => 'setDescription',
'start_date' => 'setStartDate',
'end_date' => 'setEndDate',
'periods' => 'setPeriods',
'updated_date_utc' => 'setUpdatedDateUtc'
];
/**
* Array of attributes to getter functions (for serialization of requests)
*
* @var string[]
*/
protected static $getters = [
'leave_id' => 'getLeaveId',
'leave_type_id' => 'getLeaveTypeId',
'description' => 'getDescription',
'start_date' => 'getStartDate',
'end_date' => 'getEndDate',
'periods' => 'getPeriods',
'updated_date_utc' => 'getUpdatedDateUtc'
];
/**
* 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['leave_id'] = isset($data['leave_id']) ? $data['leave_id'] : null;
$this->container['leave_type_id'] = isset($data['leave_type_id']) ? $data['leave_type_id'] : null;
$this->container['description'] = isset($data['description']) ? $data['description'] : null;
$this->container['start_date'] = isset($data['start_date']) ? $data['start_date'] : null;
$this->container['end_date'] = isset($data['end_date']) ? $data['end_date'] : null;
$this->container['periods'] = isset($data['periods']) ? $data['periods'] : null;
$this->container['updated_date_utc'] = isset($data['updated_date_utc']) ? $data['updated_date_utc'] : null;
}
/**
* Show all the invalid properties with reasons.
*
* @return array invalid properties with reasons
*/
public function listInvalidProperties()
{
$invalidProperties = [];
if ($this->container['leave_type_id'] === null) {
$invalidProperties[] = "'leave_type_id' can't be null";
}
if ($this->container['description'] === null) {
$invalidProperties[] = "'description' can't be null";
}
if ($this->container['start_date'] === null) {
$invalidProperties[] = "'start_date' can't be null";
}
if ($this->container['end_date'] === null) {
$invalidProperties[] = "'end_date' can't be null";
}
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 leave_id
*
* @return string|null
*/
public function getLeaveId()
{
return $this->container['leave_id'];
}
/**
* Sets leave_id
*
* @param string|null $leave_id The Xero identifier for LeaveType
*
* @return $this
*/
public function setLeaveId($leave_id)
{
$this->container['leave_id'] = $leave_id;
return $this;
}
/**
* Gets leave_type_id
*
* @return string
*/
public function getLeaveTypeId()
{
return $this->container['leave_type_id'];
}
/**
* Sets leave_type_id
*
* @param string $leave_type_id The Xero identifier for LeaveType
*
* @return $this
*/
public function setLeaveTypeId($leave_type_id)
{
$this->container['leave_type_id'] = $leave_type_id;
return $this;
}
/**
* Gets description
*
* @return string
*/
public function getDescription()
{
return $this->container['description'];
}
/**
* Sets description
*
* @param string $description The description of the leave (max length = 50)
*
* @return $this
*/
public function setDescription($description)
{
$this->container['description'] = $description;
return $this;
}
/**
* Gets start_date
*
* @return \DateTime
*/
public function getStartDate()
{
return $this->container['start_date'];
}
/**
* Sets start_date
*
* @param \DateTime $start_date Start date of the leave (YYYY-MM-DD)
*
* @return $this
*/
public function setStartDate($start_date)
{
$this->container['start_date'] = $start_date;
return $this;
}
/**
* Gets end_date
*
* @return \DateTime
*/
public function getEndDate()
{
return $this->container['end_date'];
}
/**
* Sets end_date
*
* @param \DateTime $end_date End date of the leave (YYYY-MM-DD)
*
* @return $this
*/
public function setEndDate($end_date)
{
$this->container['end_date'] = $end_date;
return $this;
}
/**
* Gets periods
*
* @return \XeroAPI\XeroPHP\Models\PayrollUk\LeavePeriod[]|null
*/
public function getPeriods()
{
return $this->container['periods'];
}
/**
* Sets periods
*
* @param \XeroAPI\XeroPHP\Models\PayrollUk\LeavePeriod[]|null $periods The leave period information. The StartDate, EndDate and NumberOfUnits needs to be specified when you do not want to calculate NumberOfUnits automatically. Using incorrect period StartDate and EndDate will result in automatic computation of the NumberOfUnits.
*
* @return $this
*/
public function setPeriods($periods)
{
$this->container['periods'] = $periods;
return $this;
}
/**
* Gets updated_date_utc
*
* @return \DateTime|null
*/
public function getUpdatedDateUtc()
{
return $this->container['updated_date_utc'];
}
/**
* Sets updated_date_utc
*
* @param \DateTime|null $updated_date_utc UTC timestamp of last update to the leave type note
*
* @return $this
*/
public function setUpdatedDateUtc($updated_date_utc)
{
$this->container['updated_date_utc'] = $updated_date_utc;
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(
PayrollUkObjectSerializer::sanitizeForSerialization($this),
JSON_PRETTY_PRINT
);
}
}