diff --git a/src/XeroPHP/Models/PayrollAU/PayItem/DeductionType.php b/src/XeroPHP/Models/PayrollAU/PayItem/DeductionType.php index 3253e801..309b76c6 100644 --- a/src/XeroPHP/Models/PayrollAU/PayItem/DeductionType.php +++ b/src/XeroPHP/Models/PayrollAU/PayItem/DeductionType.php @@ -105,6 +105,7 @@ public static function getProperties() 'ReducesTax' => [true, self::PROPERTY_TYPE_FLOAT, null, false, false], 'ReducesSuper' => [true, self::PROPERTY_TYPE_STRING, null, false, false], 'DeductionTypeID' => [false, self::PROPERTY_TYPE_STRING, null, false, false], + 'CurrentRecord' => [false, self::PROPERTY_TYPE_BOOLEAN, null, false, false] ]; } @@ -217,4 +218,25 @@ public function setDeductionTypeID($value) return $this; } + + /** + * @return bool + */ + public function getCurrentRecord() + { + return $this->_data['CurrentRecord']; + } + + /** + * @param bool $value + * + * @return DeductionType + */ + public function setCurrentRecord($value) + { + $this->propertyUpdated('CurrentRecord', $value); + $this->_data['CurrentRecord'] = $value; + + return $this; + } } diff --git a/src/XeroPHP/Models/PayrollAU/PayItem/EarningsRate.php b/src/XeroPHP/Models/PayrollAU/PayItem/EarningsRate.php index 2a5a986c..6fe1f103 100644 --- a/src/XeroPHP/Models/PayrollAU/PayItem/EarningsRate.php +++ b/src/XeroPHP/Models/PayrollAU/PayItem/EarningsRate.php @@ -171,6 +171,7 @@ public static function getProperties() 'Multiplier' => [false, self::PROPERTY_TYPE_FLOAT, null, false, false], 'AccrueLeave' => [false, self::PROPERTY_TYPE_FLOAT, null, false, false], 'Amount' => [false, self::PROPERTY_TYPE_FLOAT, null, false, false], + 'CurrentRecord' => [false, self::PROPERTY_TYPE_BOOLEAN, null, false, false] ]; } @@ -430,4 +431,25 @@ public function setAmount($value) return $this; } + + /** + * @return bool + */ + public function getCurrentRecord() + { + return $this->_data['CurrentRecord']; + } + + /** + * @param bool $value + * + * @return EarningsRate + */ + public function setCurrentRecord($value) + { + $this->propertyUpdated('CurrentRecord', $value); + $this->_data['CurrentRecord'] = $value; + + return $this; + } } diff --git a/src/XeroPHP/Models/PayrollAU/PayItem/LeaveType.php b/src/XeroPHP/Models/PayrollAU/PayItem/LeaveType.php index 83d9cdc2..3fced480 100644 --- a/src/XeroPHP/Models/PayrollAU/PayItem/LeaveType.php +++ b/src/XeroPHP/Models/PayrollAU/PayItem/LeaveType.php @@ -119,6 +119,7 @@ public static function getProperties() 'LeaveTypeID' => [false, self::PROPERTY_TYPE_STRING, null, false, false], 'NormalEntitlement' => [false, self::PROPERTY_TYPE_STRING, null, false, false], 'LeaveLoadingRate' => [false, self::PROPERTY_TYPE_FLOAT, null, false, false], + 'CurrentRecord' => [false, self::PROPERTY_TYPE_BOOLEAN, null, false, false] ]; } @@ -273,4 +274,25 @@ public function setLeaveLoadingRate($value) return $this; } + + /** + * @return bool + */ + public function getCurrentRecord() + { + return $this->_data['CurrentRecord']; + } + + /** + * @param bool $value + * + * @return LeaveType + */ + public function setCurrentRecord($value) + { + $this->propertyUpdated('CurrentRecord', $value); + $this->_data['CurrentRecord'] = $value; + + return $this; + } } diff --git a/src/XeroPHP/Models/PayrollAU/PayItem/ReimbursementType.php b/src/XeroPHP/Models/PayrollAU/PayItem/ReimbursementType.php index 104ff0a1..ae710e57 100644 --- a/src/XeroPHP/Models/PayrollAU/PayItem/ReimbursementType.php +++ b/src/XeroPHP/Models/PayrollAU/PayItem/ReimbursementType.php @@ -89,6 +89,7 @@ public static function getProperties() 'Name' => [true, self::PROPERTY_TYPE_STRING, null, false, false], 'AccountCode' => [true, self::PROPERTY_TYPE_STRING, null, false, false], 'ReimbursementTypeID' => [false, self::PROPERTY_TYPE_STRING, null, false, false], + 'CurrentRecord' => [false, self::PROPERTY_TYPE_BOOLEAN, null, false, false] ]; } @@ -159,4 +160,25 @@ public function setReimbursementTypeID($value) return $this; } + + /** + * @return bool + */ + public function getCurrentRecord() + { + return $this->_data['CurrentRecord']; + } + + /** + * @param bool $value + * + * @return ReimbursementType + */ + public function setCurrentRecord($value) + { + $this->propertyUpdated('CurrentRecord', $value); + $this->_data['CurrentRecord'] = $value; + + return $this; + } }