Interface ConnectionRequest

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

Properties

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