From fad90efa1d4a4603de59f987d8722eff201d8d0e Mon Sep 17 00:00:00 2001 From: Kamron Brooks Date: Tue, 22 Sep 2020 23:21:03 +1000 Subject: [PATCH] Delete Account.php This is not necessary, can just reuse the Accounting\Account model --- .../Models/PayrollAU/Setting/Account.php | 190 ------------------ 1 file changed, 190 deletions(-) delete mode 100644 src/XeroPHP/Models/PayrollAU/Setting/Account.php diff --git a/src/XeroPHP/Models/PayrollAU/Setting/Account.php b/src/XeroPHP/Models/PayrollAU/Setting/Account.php deleted file mode 100644 index bb84506b..00000000 --- a/src/XeroPHP/Models/PayrollAU/Setting/Account.php +++ /dev/null @@ -1,190 +0,0 @@ - [false, self::PROPERTY_TYPE_STRING, null, false, false], - 'Type' => [false, self::PROPERTY_TYPE_ENUM, null, false, false], - 'Code' => [false, self::PROPERTY_TYPE_STRING, null, false, false], - 'Name' => [false, self::PROPERTY_TYPE_STRING, null, false, false], - ]; - } - - public static function isPageable() - { - return false; - } - - /** - * @return string - */ - public function getAccountID() - { - return $this->_data['AccountID']; - } - - /** - * @param string $value - * - * @return Account - */ - public function setAccountID($value) - { - $this->propertyUpdated('AccountID', $value); - $this->_data['AccountID'] = $value; - - return $this; - } - - /** - * @return string - */ - public function getType() - { - return $this->_data['Type']; - } - - /** - * @param string $value - * - * @return Account - */ - public function setType($value) - { - $this->propertyUpdated('Type', $value); - $this->_data['Type'] = $value; - - return $this; - } - - /** - * @return string - */ - public function getCode() - { - return $this->_data['Code']; - } - - /** - * @param string $value - * - * @return Account - */ - public function setCode($value) - { - $this->propertyUpdated('Code', $value); - $this->_data['Code'] = $value; - - return $this; - } - - /** - * @return string - */ - public function getName() - { - return $this->_data['Name']; - } - - /** - * @param string $value - * - * @return Account - */ - public function setName($value) - { - $this->propertyUpdated('Name', $value); - $this->_data['Name'] = $value; - - return $this; - } -}