interface LinkObject {
    description?: string;
    operationId?: string;
    operationRef?: string;
    parameters?: Record<string, unknown>;
    requestBody?: unknown;
    server?: ServerObject;
    [x: string]: unknown;
}

Indexable

[x: string]: unknown

Properties

description?: string
operationId?: string
operationRef?: string
parameters?: Record<string, unknown>
requestBody?: unknown
server?: ServerObject