Class QueryRequest
The body of a Query request which defines how to sort and filter results, how many results to return, etc.
Inherited Members
Namespace: Unity.Services.Lobbies.Models
Assembly: solution.dll
Syntax
[Preserve]
public class QueryRequest
Constructors
| Name | Description |
|---|---|
| QueryRequest(int?, int?, bool, List<QueryFilter>, List<QueryOrder>, string) | The body of a Query request which defines how to sort and filter results, how many results to return, etc. |
Properties
| Name | Description |
|---|---|
| ContinuationToken | A continuation token that can be passed to subsequent query requests to fetch the next page of results. |
| Count | The number of results to return. |
| Filter | A list of filters which can be used to narrow down which lobbies to return. |
| Order | A list of orders which define how the results should be ordered in the response. |
| SampleResults | Whether a random sample of results that match the search filter should be returned. |
| Skip | The number of results to skip before selecting results to return. |