Files
pyrofetes/src/app/services/api/model/endpoint-without-request-of-list-of-get-communication-dto.ts

59 lines
1.8 KiB
TypeScript

/**
* 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<ValidationFailure>;
/**
* the response object that is serialized to the response stream.
*/
response?: Array<GetCommunicationDto> | 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<object>;
/**
* the files sent with the request. only populated when content-type is \'multipart/form-data\'
*/
files?: Array<object>;
/**
* 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 {
}