-
Notifications
You must be signed in to change notification settings - Fork 200
/
Copy pathAbsenceRegistration.php
57 lines (53 loc) · 2.07 KB
/
AbsenceRegistration.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
<?php
namespace Picqer\Financials\Exact;
/**
* Class AbsenceRegistration.
*
* @see https://start.exactonline.nl/docs/HlpRestAPIResourcesDetails.aspx?name=HRMAbsenceRegistrations
*
* @property string $ID Primary key
* @property AbsenceRegistrationTransaction[] $AbsenceRegistrationTransactions Collection of absence registration transactions
* @property int $Cause Absence cause, only supported for the Netherland legislation
* @property string $CauseCode Code for the absence cause, only supported for the Netherland legislation
* @property string $CauseDescription Description for the absence cause, only supported for the Netherland legislation
* @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 $Employee Employee linked to the absence
* @property string $EmployeeFullName Employee full name
* @property int $EmployeeHID Numeric ID of the employee
* @property int $Kind Absence kind, only supported for the Netherland legislation
* @property string $KindCode Code for the absence kind, only supported for the Netherland legislation
* @property string $KindDescription Description for the absence kind, only supported for the Netherland legislation
* @property string $Modified Last modified date
* @property string $Modifier User ID of modifier
* @property string $ModifierFullName Name of modifier
* @property string $Notes Extra information for absence
*/
class AbsenceRegistration extends Model
{
use Query\Findable;
protected $fillable = [
'ID',
'AbsenceRegistrationTransactions',
'Cause',
'CauseCode',
'CauseDescription',
'Created',
'Creator',
'CreatorFullName',
'Division',
'Employee',
'EmployeeFullName',
'EmployeeHID',
'Kind',
'KindCode',
'KindDescription',
'Modified',
'Modifier',
'ModifierFullName',
'Notes',
];
protected $url = 'hrm/AbsenceRegistrations';
}