Represent a single query, consisting of an endpoint name and a map of parameters (name and value).

interface Query {
    endpoint: string;
    parameters?: {
        [name: string]: string;
    };
}

Properties

endpoint: string

Name of the endpoint.

parameters?: {
    [name: string]: string;
}

Map of filled parameters (name and value).