-
Notifications
You must be signed in to change notification settings - Fork 200
/
AccountInvolvedAccount.php
50 lines (46 loc) · 1.62 KB
/
AccountInvolvedAccount.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
41
42
43
44
45
46
47
48
49
50
<?php
namespace Picqer\Financials\Exact;
/**
* Class AccountInvolvedAccount.
*
* @see https://start.exactonline.nl/docs/HlpRestAPIResourcesDetails.aspx?name=AccountancyAccountInvolvedAccounts
*
* @property string $ID Primary key
* @property string $Account ID of account
* @property string $AccountName Name of account
* @property string $Created Creation date
* @property string $Creator User ID of creator
* @property string $CreatorFullName Name of creator
* @property int $Division Division code
* @property string $InvolvedAccount ID of involved account
* @property string $InvolvedAccountRelationTypeDescription Description of relation type
* @property int $InvolvedAccountRelationTypeDescriptionTermId TermId of description of relation type
* @property int $InvolvedAccountRelationTypeId ID of relation type
* @property string $Modified Last modified date
* @property string $Modifier User ID of modifier
* @property string $ModifierFullName Name of modifier
* @property string $Notes Use to record details of important information
*/
class AccountInvolvedAccount extends Model
{
use Query\Findable;
use Persistance\Storable;
protected $fillable = [
'ID',
'Account',
'AccountName',
'Created',
'Creator',
'CreatorFullName',
'Division',
'InvolvedAccount',
'InvolvedAccountRelationTypeDescription',
'InvolvedAccountRelationTypeDescriptionTermId',
'InvolvedAccountRelationTypeId',
'Modified',
'Modifier',
'ModifierFullName',
'Notes',
];
protected $url = 'accountancy/AccountInvolvedAccounts';
}