Interface SearchFiltersResponseSchema

Export

SearchFiltersResponseSchema

interface SearchFiltersResponseSchema {
    hasMore: boolean;
    nextCursor: string;
    result: Show[];
}

Properties

hasMore: boolean

Whether there are more results to be loaded.

Memberof

SearchFiltersResponseSchema

nextCursor: string

Cursor value to pass to get next set of the results. An empty string if "hasMore" is "false".

Memberof

SearchFiltersResponseSchema

result: Show[]

Array of the results matched with the query.

Memberof

SearchFiltersResponseSchema

Generated using TypeDoc