Interface PlaceApplicationQueryOptions

Mapping of available query paramters for the application index endpoint

interface PlaceApplicationQueryOptions {
    limit?: number;
    offset?: number;
    q?: string;
}

Properties

Properties

limit?: number

Number of results to return. Defaults to 20. Max 500

offset?: number

Offset the page of results. Max 10000

q?: string