/home/desid573/olivercann.tk/xero-php-oauth2-master/lib/Models/PayrollNz
Edit: /home/desid573/olivercann.tk/xero-php-oauth2-master/lib/Models/PayrollNz/Timesheet.php (14348B)
'string',
'payroll_calendar_id' => 'string',
'employee_id' => 'string',
'start_date' => '\DateTime',
'end_date' => '\DateTime',
'status' => 'string',
'total_hours' => 'double',
'updated_date_utc' => '\DateTime',
'timesheet_lines' => '\XeroAPI\XeroPHP\Models\PayrollNz\TimesheetLine[]'
];
/**
* Array of property to format mappings. Used for (de)serialization
*
* @var string[]
*/
protected static $openAPIFormats = [
'timesheet_id' => 'uuid',
'payroll_calendar_id' => 'uuid',
'employee_id' => 'uuid',
'start_date' => 'date',
'end_date' => 'date',
'status' => null,
'total_hours' => 'double',
'updated_date_utc' => 'date-time',
'timesheet_lines' => 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 = [
'timesheet_id' => 'timesheetID',
'payroll_calendar_id' => 'payrollCalendarID',
'employee_id' => 'employeeID',
'start_date' => 'startDate',
'end_date' => 'endDate',
'status' => 'status',
'total_hours' => 'totalHours',
'updated_date_utc' => 'updatedDateUTC',
'timesheet_lines' => 'timesheetLines'
];
/**
* Array of attributes to setter functions (for deserialization of responses)
*
* @var string[]
*/
protected static $setters = [
'timesheet_id' => 'setTimesheetId',
'payroll_calendar_id' => 'setPayrollCalendarId',
'employee_id' => 'setEmployeeId',
'start_date' => 'setStartDate',
'end_date' => 'setEndDate',
'status' => 'setStatus',
'total_hours' => 'setTotalHours',
'updated_date_utc' => 'setUpdatedDateUtc',
'timesheet_lines' => 'setTimesheetLines'
];
/**
* Array of attributes to getter functions (for serialization of requests)
*
* @var string[]
*/
protected static $getters = [
'timesheet_id' => 'getTimesheetId',
'payroll_calendar_id' => 'getPayrollCalendarId',
'employee_id' => 'getEmployeeId',
'start_date' => 'getStartDate',
'end_date' => 'getEndDate',
'status' => 'getStatus',
'total_hours' => 'getTotalHours',
'updated_date_utc' => 'getUpdatedDateUtc',
'timesheet_lines' => 'getTimesheetLines'
];
/**
* 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;
}
const STATUS_DRAFT = 'Draft';
const STATUS_APPROVED = 'Approved';
const STATUS_COMPLETED = 'Completed';
const STATUS_REQUESTED = 'Requested';
/**
* Gets allowable values of the enum
*
* @return string[]
*/
public function getStatusAllowableValues()
{
return [
self::STATUS_DRAFT,
self::STATUS_APPROVED,
self::STATUS_COMPLETED,
self::STATUS_REQUESTED,
];
}
/**
* 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['timesheet_id'] = isset($data['timesheet_id']) ? $data['timesheet_id'] : null;
$this->container['payroll_calendar_id'] = isset($data['payroll_calendar_id']) ? $data['payroll_calendar_id'] : null;
$this->container['employee_id'] = isset($data['employee_id']) ? $data['employee_id'] : 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['status'] = isset($data['status']) ? $data['status'] : null;
$this->container['total_hours'] = isset($data['total_hours']) ? $data['total_hours'] : null;
$this->container['updated_date_utc'] = isset($data['updated_date_utc']) ? $data['updated_date_utc'] : null;
$this->container['timesheet_lines'] = isset($data['timesheet_lines']) ? $data['timesheet_lines'] : null;
}
/**
* Show all the invalid properties with reasons.
*
* @return array invalid properties with reasons
*/
public function listInvalidProperties()
{
$invalidProperties = [];
if ($this->container['payroll_calendar_id'] === null) {
$invalidProperties[] = "'payroll_calendar_id' can't be null";
}
if ($this->container['employee_id'] === null) {
$invalidProperties[] = "'employee_id' 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";
}
$allowedValues = $this->getStatusAllowableValues();
if (!is_null($this->container['status']) && !in_array($this->container['status'], $allowedValues, true)) {
$invalidProperties[] = sprintf(
"invalid value for 'status', must be one of '%s'",
implode("', '", $allowedValues)
);
}
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 timesheet_id
*
* @return string|null
*/
public function getTimesheetId()
{
return $this->container['timesheet_id'];
}
/**
* Sets timesheet_id
*
* @param string|null $timesheet_id The Xero identifier for a Timesheet
*
* @return $this
*/
public function setTimesheetId($timesheet_id)
{
$this->container['timesheet_id'] = $timesheet_id;
return $this;
}
/**
* Gets payroll_calendar_id
*
* @return string
*/
public function getPayrollCalendarId()
{
return $this->container['payroll_calendar_id'];
}
/**
* Sets payroll_calendar_id
*
* @param string $payroll_calendar_id The Xero identifier for the Payroll Calendar that the Timesheet applies to
*
* @return $this
*/
public function setPayrollCalendarId($payroll_calendar_id)
{
$this->container['payroll_calendar_id'] = $payroll_calendar_id;
return $this;
}
/**
* Gets employee_id
*
* @return string
*/
public function getEmployeeId()
{
return $this->container['employee_id'];
}
/**
* Sets employee_id
*
* @param string $employee_id The Xero identifier for the Employee that the Timesheet is for
*
* @return $this
*/
public function setEmployeeId($employee_id)
{
$this->container['employee_id'] = $employee_id;
return $this;
}
/**
* Gets start_date
*
* @return \DateTime
*/
public function getStartDate()
{
return $this->container['start_date'];
}
/**
* Sets start_date
*
* @param \DateTime $start_date The Start Date of the Timesheet period (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 The End Date of the Timesheet period (YYYY-MM-DD)
*
* @return $this
*/
public function setEndDate($end_date)
{
$this->container['end_date'] = $end_date;
return $this;
}
/**
* Gets status
*
* @return string|null
*/
public function getStatus()
{
return $this->container['status'];
}
/**
* Sets status
*
* @param string|null $status Status of the timesheet
*
* @return $this
*/
public function setStatus($status)
{
$allowedValues = $this->getStatusAllowableValues();
if (!is_null($status) && !in_array($status, $allowedValues, true)) {
throw new \InvalidArgumentException(
sprintf(
"Invalid value for 'status', must be one of '%s'",
implode("', '", $allowedValues)
)
);
}
$this->container['status'] = $status;
return $this;
}
/**
* Gets total_hours
*
* @return double|null
*/
public function getTotalHours()
{
return $this->container['total_hours'];
}
/**
* Sets total_hours
*
* @param double|null $total_hours The Total Hours of the Timesheet
*
* @return $this
*/
public function setTotalHours($total_hours)
{
$this->container['total_hours'] = $total_hours;
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 The UTC date time that the Timesheet was last updated
*
* @return $this
*/
public function setUpdatedDateUtc($updated_date_utc)
{
$this->container['updated_date_utc'] = $updated_date_utc;
return $this;
}
/**
* Gets timesheet_lines
*
* @return \XeroAPI\XeroPHP\Models\PayrollNz\TimesheetLine[]|null
*/
public function getTimesheetLines()
{
return $this->container['timesheet_lines'];
}
/**
* Sets timesheet_lines
*
* @param \XeroAPI\XeroPHP\Models\PayrollNz\TimesheetLine[]|null $timesheet_lines timesheet_lines
*
* @return $this
*/
public function setTimesheetLines($timesheet_lines)
{
$this->container['timesheet_lines'] = $timesheet_lines;
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(
PayrollNzObjectSerializer::sanitizeForSerialization($this),
JSON_PRETTY_PRINT
);
}
}