Hierarchy

  • InternalRequestControllerMappingObject

Properties

controllerProperties: {
    [key: string]: RequestControllerMethodObject;
}

Type declaration

mappings: readonly RequestMappingObject[]
openApiPartials?: readonly Partial<OpenAPIV3.Document<{}>>[]

OpenAPI v3 document annotations

operations?: readonly Partial<{
    callbacks?: {
        [callback: string]: OpenAPIV3.ReferenceObject | OpenAPIV3.CallbackObject;
    };
    deprecated?: boolean;
    description?: string;
    externalDocs?: OpenAPIV3.ExternalDocumentationObject;
    operationId?: string;
    parameters?: (OpenAPIV3.ReferenceObject | OpenAPIV3.ParameterObject)[];
    requestBody?: OpenAPIV3.ReferenceObject | OpenAPIV3.RequestBodyObject;
    responses: OpenAPIV3.ResponsesObject;
    security?: OpenAPIV3.SecurityRequirementObject[];
    servers?: OpenAPIV3.ServerObject[];
    summary?: string;
    tags?: string[];
}>[]

OpenAPI v3 operation annotations for undefined properties

Generated using TypeDoc