forked from Philippe-Mange/exact-php-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJournal.php
31 lines (26 loc) · 773 Bytes
/
Journal.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
<?php namespace Picqer\Financials\Exact;
/**
* Class Journal
*
* @package Picqer\Financials\Exact
* @see https://start.exactonline.nl/docs/HlpRestAPIResourcesDetails.aspx?name=financialJournals
*
* @property String $Code BIC code of the bank where the bank account is held
* @property Int32 $Division Division code
* @property String $Description Description of BankAccount
* @property Guid $ID Primary Key
* @property String $Type Bank account number. Is mandatory for Journals that have Type = Bank
*/
class Journal extends Model
{
use Query\Findable;
use Persistance\Storable;
protected $fillable = [
'Code',
'Division',
'Description',
'ID',
'Type',
];
protected $url = 'financial/Journals';
}