interface OrderSearchRequest {
    limit?: number;
    offset?: number;
    query: _OrderSearchQuery;
    sort?: OrderSearchSorting[];
}

Properties

limit?: number

The maximum number of search results to be returned on one page.

offset?: number

The number of search results to be skipped in the response for pagination.

The Order search query.

Controls how results to your query are sorted. If not provided, the results are sorted by relevance in descending order.