Interface ConnectionRequest

interface ConnectionRequest {
    path: any;
    method?:
        | "GET"
        | "POST"
        | "DELETE"
        | "PUT"
        | "PATCH";
    pathParameters?: Record<string, string>;
    headers?: Record<string, string>;
    query?: Record<string, string>;
    data?: any;
}

Properties

path: any
method?:
    | "GET"
    | "POST"
    | "DELETE"
    | "PUT"
    | "PATCH"
pathParameters?: Record<string, string>
headers?: Record<string, string>
query?: Record<string, string>
data?: any