Interface Method

interface Method {
    consumes?: string;
    deprecated?: boolean;
    description?: string;
    extensions: Tsoa.Extension[];
    isHidden: boolean;
    method: "delete" | "options" | "get" | "post" | "put" | "head" | "patch";
    name: string;
    operationId?: string;
    parameters: Tsoa.Parameter[];
    path: string;
    produces?: string[];
    responses: Tsoa.Response[];
    security: Tsoa.Security[];
    successStatus?: number;
    summary?: string;
    tags?: string[];
    type: Tsoa.Type;
}

Properties

consumes?: string
deprecated?: boolean
description?: string
extensions: Tsoa.Extension[]
isHidden: boolean
method: "delete" | "options" | "get" | "post" | "put" | "head" | "patch"
name: string
operationId?: string
parameters: Tsoa.Parameter[]
path: string
produces?: string[]
responses: Tsoa.Response[]
security: Tsoa.Security[]
successStatus?: number
summary?: string
tags?: string[]
type: Tsoa.Type

Generated using TypeDoc