forked from picqer/exact-php-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbsenceRegistrationTransaction.php
59 lines (55 loc) · 2.13 KB
/
AbsenceRegistrationTransaction.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
<?php
namespace Picqer\Financials\Exact;
/**
* Class AbsenceRegistrationTransaction.
*
* @see https://start.exactonline.nl/docs/HlpRestAPIResourcesDetails.aspx?name=HRMAbsenceRegistrationTransactions
*
* @property string $ID Primary key
* @property string $AbsenceRegistration Reference key to Absence Registration
* @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 $EndTime End time on the last day of absence stored as DateTime, and the date should be ignored
* @property string $ExpectedEndDate Expected end date of absence
* @property float $Hours Differentiation of absence hours of the absence registration transaction between previous and current status
* @property float $HoursFirstDay Hours of absence on the first day
* @property float $HoursLastDay Hours of absence on the last day
* @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
* @property string $NotificationMoment Notification moment of absence
* @property float $PercentageDisablement Percentage disablement
* @property string $StartDate Start date of absence
* @property string $StartTime Start time on the first day of absence stored as DateTime, and the date should be ignored
* @property int $Status Status of absence, 0 = Open, 1 = Recovered
*/
class AbsenceRegistrationTransaction extends Model
{
use Query\Findable;
protected $fillable = [
'ID',
'AbsenceRegistration',
'Created',
'Creator',
'CreatorFullName',
'Division',
'EndTime',
'ExpectedEndDate',
'Hours',
'HoursFirstDay',
'HoursLastDay',
'Modified',
'Modifier',
'ModifierFullName',
'Notes',
'NotificationMoment',
'PercentageDisablement',
'StartDate',
'StartTime',
'Status',
];
protected $url = 'hrm/AbsenceRegistrationTransactions';
}