/home/desid573/olivercann.tk/xero-php-oauth2-master/lib/Models/PayrollAu
Edit: /home/desid573/olivercann.tk/xero-php-oauth2-master/lib/Models/PayrollAu/TimesheetLine.php (9231B)
'string',
'tracking_item_id' => 'string',
'number_of_units' => 'double[]',
'updated_date_utc' => 'string'
];
/**
* Array of property to format mappings. Used for (de)serialization
*
* @var string[]
*/
protected static $openAPIFormats = [
'earnings_rate_id' => 'uuid',
'tracking_item_id' => 'uuid',
'number_of_units' => 'double',
'updated_date_utc' => 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 = [
'earnings_rate_id' => 'EarningsRateID',
'tracking_item_id' => 'TrackingItemID',
'number_of_units' => 'NumberOfUnits',
'updated_date_utc' => 'UpdatedDateUTC'
];
/**
* Array of attributes to setter functions (for deserialization of responses)
*
* @var string[]
*/
protected static $setters = [
'earnings_rate_id' => 'setEarningsRateId',
'tracking_item_id' => 'setTrackingItemId',
'number_of_units' => 'setNumberOfUnits',
'updated_date_utc' => 'setUpdatedDateUtc'
];
/**
* Array of attributes to getter functions (for serialization of requests)
*
* @var string[]
*/
protected static $getters = [
'earnings_rate_id' => 'getEarningsRateId',
'tracking_item_id' => 'getTrackingItemId',
'number_of_units' => 'getNumberOfUnits',
'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['earnings_rate_id'] = isset($data['earnings_rate_id']) ? $data['earnings_rate_id'] : null;
$this->container['tracking_item_id'] = isset($data['tracking_item_id']) ? $data['tracking_item_id'] : null;
$this->container['number_of_units'] = isset($data['number_of_units']) ? $data['number_of_units'] : 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 = [];
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 earnings_rate_id
*
* @return string|null
*/
public function getEarningsRateId()
{
return $this->container['earnings_rate_id'];
}
/**
* Sets earnings_rate_id
*
* @param string|null $earnings_rate_id The Xero identifier for an Earnings Rate
*
* @return $this
*/
public function setEarningsRateId($earnings_rate_id)
{
$this->container['earnings_rate_id'] = $earnings_rate_id;
return $this;
}
/**
* Gets tracking_item_id
*
* @return string|null
*/
public function getTrackingItemId()
{
return $this->container['tracking_item_id'];
}
/**
* Sets tracking_item_id
*
* @param string|null $tracking_item_id The Xero identifier for a Tracking Category. The TrackingOptionID must belong to the TrackingCategory selected as TimesheetCategories under Payroll Settings.
*
* @return $this
*/
public function setTrackingItemId($tracking_item_id)
{
$this->container['tracking_item_id'] = $tracking_item_id;
return $this;
}
/**
* Gets number_of_units
*
* @return double[]|null
*/
public function getNumberOfUnits()
{
return $this->container['number_of_units'];
}
/**
* Sets number_of_units
*
* @param double[]|null $number_of_units The number of units on a timesheet line
*
* @return $this
*/
public function setNumberOfUnits($number_of_units)
{
$this->container['number_of_units'] = $number_of_units;
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 Last modified timestamp
*
* @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(
PayrollAuObjectSerializer::sanitizeForSerialization($this),
JSON_PRETTY_PRINT
);
}
}