/home/desid573/public_html/payment/xero-2/lib/Models/PayrollNz
Edit: /home/desid573/public_html/payment/xero-2/lib/Models/PayrollNz/EarningsTemplate.php (10290B)
'string',
'rate_per_unit' => 'double',
'number_of_units' => 'double',
'fixed_amount' => 'double',
'earnings_rate_id' => 'string',
'name' => 'string'
];
/**
* Array of property to format mappings. Used for (de)serialization
*
* @var string[]
*/
protected static $openAPIFormats = [
'pay_template_earning_id' => 'uuid',
'rate_per_unit' => 'double',
'number_of_units' => 'double',
'fixed_amount' => 'double',
'earnings_rate_id' => 'uuid',
'name' => 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 = [
'pay_template_earning_id' => 'payTemplateEarningID',
'rate_per_unit' => 'ratePerUnit',
'number_of_units' => 'numberOfUnits',
'fixed_amount' => 'fixedAmount',
'earnings_rate_id' => 'earningsRateID',
'name' => 'name'
];
/**
* Array of attributes to setter functions (for deserialization of responses)
*
* @var string[]
*/
protected static $setters = [
'pay_template_earning_id' => 'setPayTemplateEarningId',
'rate_per_unit' => 'setRatePerUnit',
'number_of_units' => 'setNumberOfUnits',
'fixed_amount' => 'setFixedAmount',
'earnings_rate_id' => 'setEarningsRateId',
'name' => 'setName'
];
/**
* Array of attributes to getter functions (for serialization of requests)
*
* @var string[]
*/
protected static $getters = [
'pay_template_earning_id' => 'getPayTemplateEarningId',
'rate_per_unit' => 'getRatePerUnit',
'number_of_units' => 'getNumberOfUnits',
'fixed_amount' => 'getFixedAmount',
'earnings_rate_id' => 'getEarningsRateId',
'name' => 'getName'
];
/**
* 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['pay_template_earning_id'] = isset($data['pay_template_earning_id']) ? $data['pay_template_earning_id'] : null;
$this->container['rate_per_unit'] = isset($data['rate_per_unit']) ? $data['rate_per_unit'] : null;
$this->container['number_of_units'] = isset($data['number_of_units']) ? $data['number_of_units'] : null;
$this->container['fixed_amount'] = isset($data['fixed_amount']) ? $data['fixed_amount'] : null;
$this->container['earnings_rate_id'] = isset($data['earnings_rate_id']) ? $data['earnings_rate_id'] : null;
$this->container['name'] = isset($data['name']) ? $data['name'] : 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 pay_template_earning_id
*
* @return string|null
*/
public function getPayTemplateEarningId()
{
return $this->container['pay_template_earning_id'];
}
/**
* Sets pay_template_earning_id
*
* @param string|null $pay_template_earning_id The Xero identifier for the earnings template
*
* @return $this
*/
public function setPayTemplateEarningId($pay_template_earning_id)
{
$this->container['pay_template_earning_id'] = $pay_template_earning_id;
return $this;
}
/**
* Gets rate_per_unit
*
* @return double|null
*/
public function getRatePerUnit()
{
return $this->container['rate_per_unit'];
}
/**
* Sets rate_per_unit
*
* @param double|null $rate_per_unit The rate per unit
*
* @return $this
*/
public function setRatePerUnit($rate_per_unit)
{
$this->container['rate_per_unit'] = $rate_per_unit;
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 rate per unit
*
* @return $this
*/
public function setNumberOfUnits($number_of_units)
{
$this->container['number_of_units'] = $number_of_units;
return $this;
}
/**
* Gets fixed_amount
*
* @return double|null
*/
public function getFixedAmount()
{
return $this->container['fixed_amount'];
}
/**
* Sets fixed_amount
*
* @param double|null $fixed_amount The fixed amount per period
*
* @return $this
*/
public function setFixedAmount($fixed_amount)
{
$this->container['fixed_amount'] = $fixed_amount;
return $this;
}
/**
* 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 corresponding earnings rate identifier
*
* @return $this
*/
public function setEarningsRateId($earnings_rate_id)
{
$this->container['earnings_rate_id'] = $earnings_rate_id;
return $this;
}
/**
* Gets name
*
* @return string|null
*/
public function getName()
{
return $this->container['name'];
}
/**
* Sets name
*
* @param string|null $name The read-only name of the Earning Template.
*
* @return $this
*/
public function setName($name)
{
$this->container['name'] = $name;
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
);
}
}