This repository has been archived by the owner on Nov 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhistoricalleave.ts
111 lines (109 loc) · 2.51 KB
/
historicalleave.ts
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/**
* Folha de Pagamento
* HCM - Folha de pagamento
*
*
* Contact: [email protected]
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
import { Attachment } from './attachment';
import { Attendant } from './attendant';
import { ClassOrganType } from './classOrganType';
import { Disease } from './disease';
import { Employee } from './employee';
import { MovimentationRaisType } from './movimentationRaisType';
import { State } from './state';
import { SubgroupDisease } from './subgroupDisease';
import { Timetrackingsituation } from './timetrackingsituation';
import { WorkAccidentType } from './workAccidentType';
export interface Historicalleave {
/**
* Anexo
*/
attachments?: Array<Attachment>;
classOrganType?: ClassOrganType;
/**
* Término do afastamento(Sem timezone)
*/
endDate?: Date;
timetrackingsituation: Timetrackingsituation;
employee: Employee;
/**
* Início do afastamento(Com timezone)
*/
startdate: Date;
/**
* Confirmação da gravidez
*/
pregnancyConfirmation?: string;
/**
* Data prevista de término do afastamento
*/
estimatedenddate?: string;
attendant?: Attendant;
/**
* Decisão da perícia
*/
medicalDecisionDate?: string;
/**
* Exame de retorno
*/
returnExamination?: boolean;
/**
* Id do histórico
*/
id?: string;
workAccidentType?: WorkAccidentType;
subgroupDisease?: SubgroupDisease;
initialSituation?: Timetrackingsituation;
attendantState?: State;
disease?: Disease;
/**
* Risco nexo
*/
nexusHazard?: boolean;
/**
* Registro do conselho profissional
*/
recordCouncil?: string;
/**
* Observação do afastamento
*/
observation?: string;
/**
* Id externo
*/
externalId?: string;
/**
* É integração? (campo calculado)
*/
isIntegration?: boolean;
/**
* Nome do atendente
*/
attendantName?: string;
/**
* Data do parto
*/
birthDate?: string;
/**
* Dias justificados
*/
justifiedDays?: number;
/**
* Término do afastamento(Com timezone)
*/
enddate?: Date;
/**
* Início do nexo
*/
nexusStartDate?: string;
/**
* Início do afastamento(Sem timezone)
*/
startDate: Date;
movimentationRaisType?: MovimentationRaisType;
}