Interface SpotxQueryParameter

A record of SpotX query string parameters which can be a nested structure. Each entry contains the parameter name with associated value.

interface SpotxQueryParameter {
    [key: string]: string | number | boolean | string[] | Geo | SpotxData | SpotxData[];
}

Indexable

[key: string]: string | number | boolean | string[] | Geo | SpotxData | SpotxData[]