-
Notifications
You must be signed in to change notification settings - Fork 200
/
AssetGroup.php
71 lines (67 loc) · 2.97 KB
/
AssetGroup.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?php
namespace Picqer\Financials\Exact;
/**
* Class AssetGroup.
*
* @see https://start.exactonline.nl/docs/HlpRestAPIResourcesDetails.aspx?name=AssetsAssetGroups
*
* @property string $ID Primary key
* @property string $Code Code of the asset group
* @property string $Created Creation date
* @property string $Creator User ID of creator
* @property string $CreatorFullName Name of creator
* @property string $DepreciationMethod Default depreciation method of the assets in this asset group
* @property string $DepreciationMethodCode Code of the depreciation method
* @property string $DepreciationMethodDescription Description of the depreciation method
* @property string $Description Description of the asset group
* @property int $Division Division code
* @property string $GLAccountAssets GLAccount for the assets
* @property string $GLAccountAssetsCode Code of the GLAccount for the assets
* @property string $GLAccountAssetsDescription Description of the GLAccount for the assets
* @property string $GLAccountDepreciationBS GLAccount for depreciation (Balance sheet)
* @property string $GLAccountDepreciationBSCode Code of the GLAccount for depreciation (Balance sheet)
* @property string $GLAccountDepreciationBSDescription Description of the GLAccount for depreciation (Balance sheet)
* @property string $GLAccountDepreciationPL GLAccount for depreciation (Profit & Loss)
* @property string $GLAccountDepreciationPLCode Code of the GLAccount for depreciation (Profit & Loss)
* @property string $GLAccountDepreciationPLDescription Description of the GLAccount for depreciation (Profit & Loss)
* @property string $GLAccountRevaluationBS GLAccount for revaluation (Balance sheet)
* @property string $GLAccountRevaluationBSCode Code of the GLAccount for revaluation (Balance sheet)
* @property string $GLAccountRevaluationBSDescription Description of the GLAccount for revaluation (Balance sheet)
* @property string $Modified Last modified date
* @property string $Modifier User ID of modifier
* @property string $ModifierFullName Name of modifier
* @property string $Notes Notes
*/
class AssetGroup extends Model
{
use Query\Findable;
protected $fillable = [
'ID',
'Code',
'Created',
'Creator',
'CreatorFullName',
'DepreciationMethod',
'DepreciationMethodCode',
'DepreciationMethodDescription',
'Description',
'Division',
'GLAccountAssets',
'GLAccountAssetsCode',
'GLAccountAssetsDescription',
'GLAccountDepreciationBS',
'GLAccountDepreciationBSCode',
'GLAccountDepreciationBSDescription',
'GLAccountDepreciationPL',
'GLAccountDepreciationPLCode',
'GLAccountDepreciationPLDescription',
'GLAccountRevaluationBS',
'GLAccountRevaluationBSCode',
'GLAccountRevaluationBSDescription',
'Modified',
'Modifier',
'ModifierFullName',
'Notes',
];
protected $url = 'assets/AssetGroups';
}