/home/desid573/olivercann.tk/xero-php-oauth2-master/lib/Models/Accounting
Edit: /home/desid573/olivercann.tk/xero-php-oauth2-master/lib/Models/Accounting/Employee.php (14613B)
'string',
'status' => 'string',
'first_name' => 'string',
'last_name' => 'string',
'external_link' => '\XeroAPI\XeroPHP\Models\Accounting\ExternalLink',
'updated_date_utc' => 'string',
'status_attribute_string' => 'string',
'validation_errors' => '\XeroAPI\XeroPHP\Models\Accounting\ValidationError[]'
];
/**
* Array of property to format mappings. Used for (de)serialization
*
* @var string[]
*/
protected static $openAPIFormats = [
'employee_id' => 'uuid',
'status' => null,
'first_name' => null,
'last_name' => null,
'external_link' => null,
'updated_date_utc' => null,
'status_attribute_string' => null,
'validation_errors' => 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 = [
'employee_id' => 'EmployeeID',
'status' => 'Status',
'first_name' => 'FirstName',
'last_name' => 'LastName',
'external_link' => 'ExternalLink',
'updated_date_utc' => 'UpdatedDateUTC',
'status_attribute_string' => 'StatusAttributeString',
'validation_errors' => 'ValidationErrors'
];
/**
* Array of attributes to setter functions (for deserialization of responses)
*
* @var string[]
*/
protected static $setters = [
'employee_id' => 'setEmployeeId',
'status' => 'setStatus',
'first_name' => 'setFirstName',
'last_name' => 'setLastName',
'external_link' => 'setExternalLink',
'updated_date_utc' => 'setUpdatedDateUtc',
'status_attribute_string' => 'setStatusAttributeString',
'validation_errors' => 'setValidationErrors'
];
/**
* Array of attributes to getter functions (for serialization of requests)
*
* @var string[]
*/
protected static $getters = [
'employee_id' => 'getEmployeeId',
'status' => 'getStatus',
'first_name' => 'getFirstName',
'last_name' => 'getLastName',
'external_link' => 'getExternalLink',
'updated_date_utc' => 'getUpdatedDateUtc',
'status_attribute_string' => 'getStatusAttributeString',
'validation_errors' => 'getValidationErrors'
];
/**
* 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_ACTIVE = 'ACTIVE';
const STATUS_ARCHIVED = 'ARCHIVED';
const STATUS_GDPRREQUEST = 'GDPRREQUEST';
const STATUS_DELETED = 'DELETED';
/**
* Gets allowable values of the enum
*
* @return string[]
*/
public function getStatusAllowableValues()
{
return [
self::STATUS_ACTIVE,
self::STATUS_ARCHIVED,
self::STATUS_GDPRREQUEST,
self::STATUS_DELETED,
];
}
/**
* 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['status'] = isset($data['status']) ? $data['status'] : 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['external_link'] = isset($data['external_link']) ? $data['external_link'] : null;
$this->container['updated_date_utc'] = isset($data['updated_date_utc']) ? $data['updated_date_utc'] : null;
$this->container['status_attribute_string'] = isset($data['status_attribute_string']) ? $data['status_attribute_string'] : null;
$this->container['validation_errors'] = isset($data['validation_errors']) ? $data['validation_errors'] : null;
}
/**
* Show all the invalid properties with reasons.
*
* @return array invalid properties with reasons
*/
public function listInvalidProperties()
{
$invalidProperties = [];
$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)
);
}
if (!is_null($this->container['first_name']) && (mb_strlen($this->container['first_name']) > 255)) {
$invalidProperties[] = "invalid value for 'first_name', the character length must be smaller than or equal to 255.";
}
if (!is_null($this->container['last_name']) && (mb_strlen($this->container['last_name']) > 255)) {
$invalidProperties[] = "invalid value for 'last_name', the character length must be smaller than or equal to 255.";
}
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 The Xero identifier for an employee e.g. 297c2dc5-cc47-4afd-8ec8-74990b8761e9
*
* @return $this
*/
public function setEmployeeId($employee_id)
{
$this->container['employee_id'] = $employee_id;
return $this;
}
/**
* Gets status
*
* @return string|null
*/
public function getStatus()
{
return $this->container['status'];
}
/**
* Sets status
*
* @param string|null $status Current status of an employee – see contact status types
*
* @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 first_name
*
* @return string|null
*/
public function getFirstName()
{
return $this->container['first_name'];
}
/**
* Sets first_name
*
* @param string|null $first_name First name of an employee (max length = 255)
*
* @return $this
*/
public function setFirstName($first_name)
{
if (!is_null($first_name) && (mb_strlen($first_name) > 255)) {
throw new \InvalidArgumentException('invalid length for $first_name when calling Employee., must be smaller than or equal to 255.');
}
$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 an employee (max length = 255)
*
* @return $this
*/
public function setLastName($last_name)
{
if (!is_null($last_name) && (mb_strlen($last_name) > 255)) {
throw new \InvalidArgumentException('invalid length for $last_name when calling Employee., must be smaller than or equal to 255.');
}
$this->container['last_name'] = $last_name;
return $this;
}
/**
* Gets external_link
*
* @return \XeroAPI\XeroPHP\Models\Accounting\ExternalLink|null
*/
public function getExternalLink()
{
return $this->container['external_link'];
}
/**
* Sets external_link
*
* @param \XeroAPI\XeroPHP\Models\Accounting\ExternalLink|null $external_link external_link
*
* @return $this
*/
public function setExternalLink($external_link)
{
$this->container['external_link'] = $external_link;
return $this;
}
/**
* Gets updated_date_utc
*
* @return string|null
*/
public function getUpdatedDateUtc()
{
return $this->container['updated_date_utc'];
}
public function getUpdatedDateUtcAsDate()
{
if ($this->getUpdatedDateUtc() != null) {
return StringUtil::convertStringToDateTime($this->getUpdatedDateUtc());
} else {
throw new \Exception('can not convert null string to date');
}
}
/**
* Sets updated_date_utc
*
* @param string|null $updated_date_utc updated_date_utc
*
* @return $this
*/
public function setUpdatedDateUtc($updated_date_utc)
{
$this->container['updated_date_utc'] = $updated_date_utc;
return $this;
}
/**
* Gets status_attribute_string
*
* @return string|null
*/
public function getStatusAttributeString()
{
return $this->container['status_attribute_string'];
}
/**
* Sets status_attribute_string
*
* @param string|null $status_attribute_string A string to indicate if a invoice status
*
* @return $this
*/
public function setStatusAttributeString($status_attribute_string)
{
$this->container['status_attribute_string'] = $status_attribute_string;
return $this;
}
/**
* Gets validation_errors
*
* @return \XeroAPI\XeroPHP\Models\Accounting\ValidationError[]|null
*/
public function getValidationErrors()
{
return $this->container['validation_errors'];
}
/**
* Sets validation_errors
*
* @param \XeroAPI\XeroPHP\Models\Accounting\ValidationError[]|null $validation_errors Displays array of validation error messages from the API
*
* @return $this
*/
public function setValidationErrors($validation_errors)
{
$this->container['validation_errors'] = $validation_errors;
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(
AccountingObjectSerializer::sanitizeForSerialization($this),
JSON_PRETTY_PRINT
);
}
}