From 19f720b422b45b057949062ad76b295ec3e0d462 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mathias=20B=C3=A6rentsen?= Date: Tue, 18 Jun 2024 11:46:03 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Add=20accountingYears=20and=20balan?= =?UTF-8?q?ce?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Resources/Account.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Resources/Account.php b/src/Resources/Account.php index ab75444..e83d49e 100644 --- a/src/Resources/Account.php +++ b/src/Resources/Account.php @@ -8,12 +8,17 @@ class Account extends Resource { public AccountingYear $accountingYear; + // TODO: Change typehint to EconomicCollection + public string $accountingYears; + public int $accountNumber; public array $accountSummed; public string $accountType; + public float $balance; + public bool $barred; public bool $blockDirectEntries;