-
Notifications
You must be signed in to change notification settings - Fork 200
/
Copy pathAccountOwner.php
50 lines (46 loc) · 1.57 KB
/
AccountOwner.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 AccountOwner.
*
* @see https://start.exactonline.nl/docs/HlpRestAPIResourcesDetails.aspx?name=AccountancyAccountOwners
*
* @property string $ID Primary key
* @property string $Account ID of the account that is owned
* @property string $AccountCode Code of the account that is owned
* @property string $AccountName Name of the account that is owned
* @property string $Created Creation date
* @property string $Creator User ID of the creator
* @property string $CreatorFullName Name of the creator
* @property int $Division Division code
* @property string $Modified Last modified date
* @property string $Modifier User ID of the modifier
* @property string $ModifierFullName Name of the modifier
* @property string $OwnerAccount ID of the account who owns specified account
* @property string $OwnerAccountCode Code of the account who owns specified account
* @property string $OwnerAccountName Name of the account who owns specified account
* @property float $Shares Percentage of shares that is owned. 1 is 100%, 0.5 is 50%
*/
class AccountOwner extends Model
{
use Query\Findable;
use Persistance\Storable;
protected $fillable = [
'ID',
'Account',
'AccountCode',
'AccountName',
'Created',
'Creator',
'CreatorFullName',
'Division',
'Modified',
'Modifier',
'ModifierFullName',
'OwnerAccount',
'OwnerAccountCode',
'OwnerAccountName',
'Shares',
];
protected $url = 'accountancy/AccountOwners';
}