-
Notifications
You must be signed in to change notification settings - Fork 200
/
Copy pathCommercialBuildingValue.php
49 lines (45 loc) · 1.45 KB
/
CommercialBuildingValue.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
<?php
namespace Picqer\Financials\Exact;
/**
* Class CommercialBuildingValue.
*
* @see https://start.exactonline.nl/docs/HlpRestAPIResourcesDetails.aspx?name=AssetsCommercialBuildingValues
*
* @property string $ID Primary key
* @property string $Asset Asset
* @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 $EndDate End date of the date range during which this percentage is valid
* @property int $LineNumber Line number
* @property float $MinimumValue Minimum Value
* @property string $Modified Last modified date
* @property string $Modifier User ID of modifier
* @property string $ModifierFullName Name of modifier
* @property float $PropertyValue Property Value
* @property int $PropertyValueOption Property Value Option
* @property string $StartDate Start date of the date range during which this percentage is valid
*/
class CommercialBuildingValue extends Model
{
use Query\Findable;
protected $fillable = [
'ID',
'Asset',
'Created',
'Creator',
'CreatorFullName',
'Division',
'EndDate',
'LineNumber',
'MinimumValue',
'Modified',
'Modifier',
'ModifierFullName',
'PropertyValue',
'PropertyValueOption',
'StartDate',
];
protected $url = 'assets/CommercialBuildingValues';
}