/** * EBAD API * This documentation describe EBAD API. * * The version of the OpenAPI document: 2.11.0-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { NormeDto } from './normeDto'; import { ApplicationDto } from './applicationDto'; import { PublicIdentityDto } from './publicIdentityDto'; export interface EnvironnementCreationDto { createdBy: string; createdDate: string; lastModifiedBy?: string; lastModifiedDate?: string; name?: string; application?: ApplicationDto; host?: string; identity?: PublicIdentityDto; homePath?: string; prefix?: string; norme?: NormeDto; }