swagger-typescript-api
    Preparing search index...

    Interface ParsedRouteRequest

    interface ParsedRouteRequest {
        contentTypes?: string[];
        formData?: boolean;
        headers?: {
            name: string | null;
            optional: boolean | undefined;
            type: Record<string, any>;
        };
        isQueryBody?: boolean;
        method?: string;
        parameters?: Record<string, unknown>[];
        path?: string;
        pathParams?: Record<string, unknown>;
        payload?: { name: string | null; optional?: boolean; type: string };
        query?: Record<string, unknown>;
        requestParams?: Record<string, unknown> | null;
        security?: boolean;
    }
    Index

    Properties

    contentTypes?: string[]
    formData?: boolean
    headers?: {
        name: string | null;
        optional: boolean | undefined;
        type: Record<string, any>;
    }
    isQueryBody?: boolean
    method?: string
    parameters?: Record<string, unknown>[]
    path?: string
    pathParams?: Record<string, unknown>
    payload?: { name: string | null; optional?: boolean; type: string }
    query?: Record<string, unknown>
    requestParams?: Record<string, unknown> | null
    security?: boolean