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 pathresume.ts
204 lines (202 loc) · 4.43 KB
/
resume.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
/**
* Recrutamento e Seleção
* Serviço do Gestão de Recrutamento e Seleção.
*
* OpenAPI spec version: 15.11.0
* 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 { Ability } from './ability';
import { DisabilityDto } from './disabilityDto';
import { EducationSection } from './educationSection';
import { GenderDto } from './genderDto';
import { HonorificDto } from './honorificDto';
import { Knowledge } from './knowledge';
import { LanguageSection } from './languageSection';
import { MaritalStatusDto } from './maritalStatusDto';
import { PersonalInterestSection } from './personalInterestSection';
import { PersonalityModelCandidate } from './personalityModelCandidate';
import { PositionSought } from './positionSought';
import { ProfessionalExperienceSection } from './professionalExperienceSection';
import { ResumePhoneContact } from './resumePhoneContact';
export interface Resume {
/**
* Data de nascimento da pessoa.
*/
birthday?: string;
/**
* País.
*/
country?: string;
gender?: GenderDto;
/**
* Cidade.
*/
city?: string;
/**
* Informação adicional referente ao endereço (e.g. Número do apartamento, Bloco do residencial, Ponto de referência).
*/
additional?: string;
/**
* Código postal.
*/
postalCode?: string;
/**
* Formação acadêmica.
*/
educations?: Array<EducationSection>;
/**
* Perfil do Instagram.
*/
instagram?: string;
/**
* Preferencia de idoma do candidato.
*/
locale?: string;
/**
* Pretensão salarial.
*/
salaryExpectation?: string;
/**
* Interesses pessoais.
*/
personalInterests?: Array<PersonalInterestSection>;
/**
* Perfil do Google+.
*/
googlePlus?: string;
/**
* Habilidades.
*/
abilities?: Array<Ability>;
/**
* Número da residência/comércio.
*/
number?: string;
/**
* Usuário do Skype.
*/
skype?: string;
/**
* Data de criação.
*/
createdAt?: Date;
/**
* Perfil do Twitter.
*/
twitter?: string;
personalityModelCandidate?: PersonalityModelCandidate;
/**
* Quantidade de filhos.
*/
children?: number;
/**
* CPF (Cadastro de Pessoas Físicas) da pessoa.
*/
cpf?: string;
/**
* Indica se a pessoa não tem experiência profissional.
*/
hasNotProfessionalExperience?: boolean;
/**
* Identificador único da entidade.
*/
id?: string;
/**
* Estado do país.
*/
state?: string;
/**
* Anexo do currículo.
*/
attachmentId?: string;
/**
* Contatos telefônicos.
*/
phoneContacts?: Array<ResumePhoneContact>;
/**
* E-mail.
*/
email?: string;
honorific?: HonorificDto;
/**
* Data da última alteração.
*/
updatedAt?: Date;
/**
* Logradouro/Rua.
*/
address?: string;
/**
* Idiomas.
*/
languages?: Array<LanguageSection>;
/**
* Experiências profissionais.
*/
professionalExperiences?: Array<ProfessionalExperienceSection>;
/**
* Link da foto miniatura
*/
photoThumbnailLink?: string;
/**
* Perfil do Facebook.
*/
facebook?: string;
/**
* Resumo profissional.
*/
professionalSummary?: string;
/**
* Foto.
*/
photoId?: string;
/**
* Disponível para deslocalização.
*/
relocation?: boolean;
/**
* Objetivo profissional.
*/
professionalGoal?: string;
/**
* Perfil do LinkedIn.
*/
linkedIn?: string;
/**
* Deficiências da pessoa.
*/
disabilities?: Array<DisabilityDto>;
/**
* Número de notificação de currículo incompleto enviadas.
*/
incompleteNotifications?: number;
/**
* Cargos pretendidos.
*/
positionsSought?: Array<PositionSought>;
/**
* Nome completo da pessoa.
*/
name?: string;
/**
* Bairro/Distrito.
*/
neighborhood?: string;
/**
* Link da foto
*/
photoLink?: string;
/**
* Disponível para viagens.
*/
travel?: boolean;
maritalStatus?: MaritalStatusDto;
/**
* Conhecimentos.
*/
knowledges?: Array<Knowledge>;
}