| 1 | <?php |
||
| 20 | class ChartAccountsAccount extends AbstractChartAccountsModel { |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Account type. |
||
| 24 | * |
||
| 25 | * @var ChartAccountsType |
||
| 26 | */ |
||
| 27 | private $accountType; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Constructor. |
||
| 31 | */ |
||
| 32 | public function __construct() { |
||
| 35 | |||
| 36 | /** |
||
| 37 | * Get the account type. |
||
| 38 | * |
||
| 39 | * @return ChartAccountsType Returns the type. |
||
| 40 | */ |
||
| 41 | public function getAccountType() { |
||
| 44 | |||
| 45 | /** |
||
| 46 | * Set the account type. |
||
| 47 | * |
||
| 48 | * @param ChartAccountsType $accountType The account type. |
||
| 49 | * @return ChartAccountsAccount Returns this COA account. |
||
| 50 | */ |
||
| 51 | public function setAccountType(ChartAccountsType $accountType) { |
||
| 55 | |||
| 56 | } |
||
| 57 |