parent
4441911026
commit
559af3456f
@ -1,43 +0,0 @@ |
||||
/** |
||||
* API du serveur de l'application de digitalisation des EP |
||||
* API qui sra utilisée afin de faire communiquer le client et le serveur ainsi que le serveur et la boîte noire. |
||||
* |
||||
* OpenAPI spec version: 1.3.6 |
||||
*
|
||||
* |
||||
* 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 { CollaborateurDTO } from './collaborateurDTO'; |
||||
import { EpInformationDTO } from './epInformationDTO'; |
||||
import { StatutFormationDTO } from './statutFormationDTO'; |
||||
|
||||
/** |
||||
* DTO concernant la participation à une formation. |
||||
*/ |
||||
export interface FormationDTOParticipations {
|
||||
/** |
||||
* Id de la participation formation |
||||
*/ |
||||
id?: number; |
||||
/** |
||||
* Date à laquelle la participation a été créée |
||||
*/ |
||||
dateCreation: Date; |
||||
/** |
||||
* Intitulé de la formation |
||||
*/ |
||||
intitule: string; |
||||
/** |
||||
* Date de début de la formation |
||||
*/ |
||||
dateDebut: Date; |
||||
statut: StatutFormationDTO; |
||||
collaborateur: CollaborateurDTO; |
||||
/** |
||||
* Indique si le collaborateur a effectué l'évaluation de la formation |
||||
*/ |
||||
estEvaluee: boolean; |
||||
ep?: EpInformationDTO; |
||||
} |
Loading…
Reference in new issue