-
Notifications
You must be signed in to change notification settings - Fork 200
/
Copy pathCostcenter.php
44 lines (40 loc) · 1.17 KB
/
Costcenter.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 Costcenter.
*
* @see https://start.exactonline.nl/docs/HlpRestAPIResourcesDetails.aspx?name=HRMCostcenters
*
* @property string $ID Primary key
* @property string $Code Code (user-defined ID)
* @property string $Created Creation date
* @property string $Creator User ID of creator
* @property string $CreatorFullName Name of creator
* @property string $CustomField Custom field endpoint
* @property string $Description Description (text)
* @property int $Division Division code
* @property string $EndDate The end date by which the cost center has to be inactive
* @property string $Modified Last modified date
* @property string $Modifier User ID of modifier
* @property string $ModifierFullName Name of modifier
*/
class Costcenter extends Model
{
use Query\Findable;
use Persistance\Storable;
protected $fillable = [
'ID',
'Code',
'Created',
'Creator',
'CreatorFullName',
'CustomField',
'Description',
'Division',
'EndDate',
'Modified',
'Modifier',
'ModifierFullName',
];
protected $url = 'hrm/Costcenters';
}