interface LinkObject {
    description?: string;
    operationId?: string;
    operationRef?: string;
    parameters?: {
        [parameter: string]: any;
    };
    requestBody?: any;
    server?: ServerObject;
}

Properties

description?: string
operationId?: string
operationRef?: string
parameters?: {
    [parameter: string]: any;
}

Type declaration

  • [parameter: string]: any
requestBody?: any
server?: ServerObject

Generated using TypeDoc