Normal API key type.

interface IApiKey {
    description?: string;
    in?: "query" | "header" | "cookie";
    name?: string;
    type: "apiKey";
}

Properties

description?: string
in?: "query" | "header" | "cookie"
name?: string
type: "apiKey"