forked from picqer/exact-php-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DivisionClassName.php
44 lines (40 loc) · 1.24 KB
/
DivisionClassName.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
<?php
namespace Picqer\Financials\Exact;
/**
* Class DivisionClassName.
*
* @see https://start.exactonline.nl/docs/HlpRestAPIResourcesDetails.aspx?name=HRMDivisionClassNames
*
* @property string $ID Primary key
* @property string $Created Creation date
* @property string $Creator User ID of creator
* @property string $CreatorFullName Name of creator
* @property string $Customer ID of customer
* @property string $Description Description of classification
* @property int $DescriptionTermID Term ID of the classification
* @property divisionclasses $DivisionClasses Collection of classification properties
* @property string $Modified Last modified date
* @property string $Modifier User ID of modifier
* @property string $ModifierFullName Name of modifier
* @property int $SequenceNr Sequence number
*/
class DivisionClassName extends Model
{
use Query\Findable;
use Persistance\Storable;
protected $fillable = [
'ID',
'Created',
'Creator',
'CreatorFullName',
'Customer',
'Description',
'DescriptionTermID',
'DivisionClasses',
'Modified',
'Modifier',
'ModifierFullName',
'SequenceNr',
];
protected $url = 'hrm/DivisionClassNames';
}