/home/desid573/olivercann.tk/xero-php-oauth2-master/lib/Models/PayrollNz
Edit: /home/desid573/olivercann.tk/xero-php-oauth2-master/lib/Models/PayrollNz/Employee.php (17060B)
'string',
'title' => 'string',
'first_name' => 'string',
'last_name' => 'string',
'date_of_birth' => '\DateTime',
'address' => '\XeroAPI\XeroPHP\Models\PayrollNz\Address',
'email' => 'string',
'gender' => 'string',
'phone_number' => 'string',
'start_date' => '\DateTime',
'end_date' => '\DateTime',
'payroll_calendar_id' => 'string',
'updated_date_utc' => '\DateTime',
'created_date_utc' => '\DateTime'
];
/**
* Array of property to format mappings. Used for (de)serialization
*
* @var string[]
*/
protected static $openAPIFormats = [
'employee_id' => 'uuid',
'title' => null,
'first_name' => null,
'last_name' => null,
'date_of_birth' => 'date',
'address' => null,
'email' => null,
'gender' => null,
'phone_number' => null,
'start_date' => 'date',
'end_date' => 'date',
'payroll_calendar_id' => 'uuid',
'updated_date_utc' => 'date-time',
'created_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 = [
'employee_id' => 'employeeID',
'title' => 'title',
'first_name' => 'firstName',
'last_name' => 'lastName',
'date_of_birth' => 'dateOfBirth',
'address' => 'address',
'email' => 'email',
'gender' => 'gender',
'phone_number' => 'phoneNumber',
'start_date' => 'startDate',
'end_date' => 'endDate',
'payroll_calendar_id' => 'payrollCalendarID',
'updated_date_utc' => 'updatedDateUTC',
'created_date_utc' => 'createdDateUTC'
];
/**
* Array of attributes to setter functions (for deserialization of responses)
*
* @var string[]
*/
protected static $setters = [
'employee_id' => 'setEmployeeId',
'title' => 'setTitle',
'first_name' => 'setFirstName',
'last_name' => 'setLastName',
'date_of_birth' => 'setDateOfBirth',
'address' => 'setAddress',
'email' => 'setEmail',
'gender' => 'setGender',
'phone_number' => 'setPhoneNumber',
'start_date' => 'setStartDate',
'end_date' => 'setEndDate',
'payroll_calendar_id' => 'setPayrollCalendarId',
'updated_date_utc' => 'setUpdatedDateUtc',
'created_date_utc' => 'setCreatedDateUtc'
];
/**
* Array of attributes to getter functions (for serialization of requests)
*
* @var string[]
*/
protected static $getters = [
'employee_id' => 'getEmployeeId',
'title' => 'getTitle',
'first_name' => 'getFirstName',
'last_name' => 'getLastName',
'date_of_birth' => 'getDateOfBirth',
'address' => 'getAddress',
'email' => 'getEmail',
'gender' => 'getGender',
'phone_number' => 'getPhoneNumber',
'start_date' => 'getStartDate',
'end_date' => 'getEndDate',
'payroll_calendar_id' => 'getPayrollCalendarId',
'updated_date_utc' => 'getUpdatedDateUtc',
'created_date_utc' => 'getCreatedDateUtc'
];
/**
* 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 GENDER_M = 'M';
const GENDER_F = 'F';
/**
* Gets allowable values of the enum
*
* @return string[]
*/
public function getGenderAllowableValues()
{
return [
self::GENDER_M,
self::GENDER_F,
];
}
/**
* 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['employee_id'] = isset($data['employee_id']) ? $data['employee_id'] : null;
$this->container['title'] = isset($data['title']) ? $data['title'] : null;
$this->container['first_name'] = isset($data['first_name']) ? $data['first_name'] : null;
$this->container['last_name'] = isset($data['last_name']) ? $data['last_name'] : null;
$this->container['date_of_birth'] = isset($data['date_of_birth']) ? $data['date_of_birth'] : null;
$this->container['address'] = isset($data['address']) ? $data['address'] : null;
$this->container['email'] = isset($data['email']) ? $data['email'] : null;
$this->container['gender'] = isset($data['gender']) ? $data['gender'] : null;
$this->container['phone_number'] = isset($data['phone_number']) ? $data['phone_number'] : 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['payroll_calendar_id'] = isset($data['payroll_calendar_id']) ? $data['payroll_calendar_id'] : null;
$this->container['updated_date_utc'] = isset($data['updated_date_utc']) ? $data['updated_date_utc'] : null;
$this->container['created_date_utc'] = isset($data['created_date_utc']) ? $data['created_date_utc'] : null;
}
/**
* Show all the invalid properties with reasons.
*
* @return array invalid properties with reasons
*/
public function listInvalidProperties()
{
$invalidProperties = [];
$allowedValues = $this->getGenderAllowableValues();
if (!is_null($this->container['gender']) && !in_array($this->container['gender'], $allowedValues, true)) {
$invalidProperties[] = sprintf(
"invalid value for 'gender', 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 employee_id
*
* @return string|null
*/
public function getEmployeeId()
{
return $this->container['employee_id'];
}
/**
* Sets employee_id
*
* @param string|null $employee_id Xero unique identifier for the employee
*
* @return $this
*/
public function setEmployeeId($employee_id)
{
$this->container['employee_id'] = $employee_id;
return $this;
}
/**
* Gets title
*
* @return string|null
*/
public function getTitle()
{
return $this->container['title'];
}
/**
* Sets title
*
* @param string|null $title Title of the employee
*
* @return $this
*/
public function setTitle($title)
{
$this->container['title'] = $title;
return $this;
}
/**
* Gets first_name
*
* @return string|null
*/
public function getFirstName()
{
return $this->container['first_name'];
}
/**
* Sets first_name
*
* @param string|null $first_name First name of employee
*
* @return $this
*/
public function setFirstName($first_name)
{
$this->container['first_name'] = $first_name;
return $this;
}
/**
* Gets last_name
*
* @return string|null
*/
public function getLastName()
{
return $this->container['last_name'];
}
/**
* Sets last_name
*
* @param string|null $last_name Last name of employee
*
* @return $this
*/
public function setLastName($last_name)
{
$this->container['last_name'] = $last_name;
return $this;
}
/**
* Gets date_of_birth
*
* @return \DateTime|null
*/
public function getDateOfBirth()
{
return $this->container['date_of_birth'];
}
/**
* Sets date_of_birth
*
* @param \DateTime|null $date_of_birth Date of birth of the employee (YYYY-MM-DD)
*
* @return $this
*/
public function setDateOfBirth($date_of_birth)
{
$this->container['date_of_birth'] = $date_of_birth;
return $this;
}
/**
* Gets address
*
* @return \XeroAPI\XeroPHP\Models\PayrollNz\Address|null
*/
public function getAddress()
{
return $this->container['address'];
}
/**
* Sets address
*
* @param \XeroAPI\XeroPHP\Models\PayrollNz\Address|null $address address
*
* @return $this
*/
public function setAddress($address)
{
$this->container['address'] = $address;
return $this;
}
/**
* Gets email
*
* @return string|null
*/
public function getEmail()
{
return $this->container['email'];
}
/**
* Sets email
*
* @param string|null $email The email address for the employee
*
* @return $this
*/
public function setEmail($email)
{
$this->container['email'] = $email;
return $this;
}
/**
* Gets gender
*
* @return string|null
*/
public function getGender()
{
return $this->container['gender'];
}
/**
* Sets gender
*
* @param string|null $gender The employee’s gender
*
* @return $this
*/
public function setGender($gender)
{
$allowedValues = $this->getGenderAllowableValues();
if (!is_null($gender) && !in_array($gender, $allowedValues, true)) {
throw new \InvalidArgumentException(
sprintf(
"Invalid value for 'gender', must be one of '%s'",
implode("', '", $allowedValues)
)
);
}
$this->container['gender'] = $gender;
return $this;
}
/**
* Gets phone_number
*
* @return string|null
*/
public function getPhoneNumber()
{
return $this->container['phone_number'];
}
/**
* Sets phone_number
*
* @param string|null $phone_number Employee phone number
*
* @return $this
*/
public function setPhoneNumber($phone_number)
{
$this->container['phone_number'] = $phone_number;
return $this;
}
/**
* Gets start_date
*
* @return \DateTime|null
*/
public function getStartDate()
{
return $this->container['start_date'];
}
/**
* Sets start_date
*
* @param \DateTime|null $start_date Employment start date of the employee at the time it was requested
*
* @return $this
*/
public function setStartDate($start_date)
{
$this->container['start_date'] = $start_date;
return $this;
}
/**
* Gets end_date
*
* @return \DateTime|null
*/
public function getEndDate()
{
return $this->container['end_date'];
}
/**
* Sets end_date
*
* @param \DateTime|null $end_date Employment end date of the employee at the time it was requested
*
* @return $this
*/
public function setEndDate($end_date)
{
$this->container['end_date'] = $end_date;
return $this;
}
/**
* Gets payroll_calendar_id
*
* @return string|null
*/
public function getPayrollCalendarId()
{
return $this->container['payroll_calendar_id'];
}
/**
* Sets payroll_calendar_id
*
* @param string|null $payroll_calendar_id Xero unique identifier for the payroll calendar of the employee
*
* @return $this
*/
public function setPayrollCalendarId($payroll_calendar_id)
{
$this->container['payroll_calendar_id'] = $payroll_calendar_id;
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 employee
*
* @return $this
*/
public function setUpdatedDateUtc($updated_date_utc)
{
$this->container['updated_date_utc'] = $updated_date_utc;
return $this;
}
/**
* Gets created_date_utc
*
* @return \DateTime|null
*/
public function getCreatedDateUtc()
{
return $this->container['created_date_utc'];
}
/**
* Sets created_date_utc
*
* @param \DateTime|null $created_date_utc UTC timestamp when the employee was created in Xero
*
* @return $this
*/
public function setCreatedDateUtc($created_date_utc)
{
$this->container['created_date_utc'] = $created_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(
PayrollNzObjectSerializer::sanitizeForSerialization($this),
JSON_PRETTY_PRINT
);
}
}