-
Notifications
You must be signed in to change notification settings - Fork 200
/
CurrentYearProcessed.php
35 lines (30 loc) · 1.06 KB
/
CurrentYearProcessed.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
namespace Picqer\Financials\Exact;
/**
* Class CurrentYearProcessed.
*
* @see https://start.exactonline.nl/docs/HlpRestAPIResourcesDetails.aspx?name=OpeningBalanceCurrentYearProcessed
*
* @property int $Division Division code.
* @property string $GLAccount The balance sheet account.
* @property int $ReportingYear The reporting year of the opening balance.
* @property float $Amount The opening balance amount of the G/L account.
* @property string $BalanceSide Indicates whether the G/L account is a debit or credit account. D = Debit, C = Credit.
* @property string $GLAccountCode The code of the G/L account.
* @property string $GLAccountDescription The description of the G/L account.
*/
class CurrentYearProcessed extends Model
{
use Query\Findable;
protected $primaryKey = 'ReportingYear';
protected $fillable = [
'Division',
'GLAccount',
'ReportingYear',
'Amount',
'BalanceSide',
'GLAccountCode',
'GLAccountDescription',
];
protected $url = 'openingbalance/CurrentYear/Processed';
}