interface RouteRestConfig {
    headers: Record<string, string>;
    uri: string;
    verb: RouteRestConfigHttpVerb;
}

Properties

Properties

headers: Record<string, string>

HTTP call extra headers.

uri: string

URI of the REST endpoint.

HTTP verb used to call REST URI.