/** * PyroFetes * * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { GetCommunicationDto } from './get-communication-dto'; import { ClaimsPrincipal } from './claims-principal'; import { EndpointDefinition } from './endpoint-definition'; import { Http } from './http'; import { IWebHostEnvironment } from './i-web-host-environment'; import { ValidationFailure } from './validation-failure'; export interface EndpointWithoutRequestOfListOfGetCommunicationDto { definition?: EndpointDefinition; httpContext?: object; validationFailures?: Array; /** * the response object that is serialized to the response stream. */ response?: Array | null; user?: ClaimsPrincipal; /** * Represents a set of key/value application configuration properties. */ config?: object; env?: IWebHostEnvironment; /** * Represents a type used to perform logging. */ logger?: object; /** * the base url of the current request */ baseURL?: string; httpMethod?: Http; /** * the form sent with the request. only populated if content-type is \'application/x-www-form-urlencoded\' or \'multipart/form-data\' */ form?: Array; /** * the files sent with the request. only populated when content-type is \'multipart/form-data\' */ files?: Array; /** * get or set whether the response has started. you\'d only use this if you\'re writing to the response stream by yourself. */ responseStarted?: boolean; validationFailed?: boolean; } export namespace EndpointWithoutRequestOfListOfGetCommunicationDto { }