forked from picqer/exact-php-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Bank.php
40 lines (36 loc) · 1.08 KB
/
Bank.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
36
37
38
39
40
<?php
namespace Picqer\Financials\Exact;
/**
* Class Bank.
*
* @see https://start.exactonline.nl/docs/HlpRestAPIResourcesDetails.aspx?name=CashflowBanks
*
* @property string $ID Primary key
* @property string $BankName The name of the bank
* @property string $BICCode The bank identification code of the bank
* @property string $Country The country in which the bank is based
* @property string $Created Creation date
* @property string $Description The extended description of the bank
* @property string $Format The account format used by the bank
* @property string $HomePageAddress The website of the bank
* @property string $Modified Last modified date
* @property string $Status The status of the bank. A = Active, P = Passive
*/
class Bank extends Model
{
use Query\Findable;
use Persistance\Storable;
protected $fillable = [
'ID',
'BankName',
'BICCode',
'Country',
'Created',
'Description',
'Format',
'HomePageAddress',
'Modified',
'Status',
];
protected $url = 'cashflow/Banks';
}