v1.2.1
Latest
2020.3+
Class QueryLobbiesOptions
Query parameters for Lobby service requests.
Namespace: Unity.Services.Lobbies
Syntax
public class QueryLobbiesOptions
Properties
ContinuationToken
A continuation token that can be passed to subsequent query requests to fetch the next page of results.
Declaration
public string ContinuationToken { get; set; }
Property Value
Type | Description |
---|---|
String |
Count
The number of results to return. Minimum: 1. Maximum: 100. Default: 10.
Declaration
public int Count { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
Filters
A list of filters which can be used to narrow down which lobbies to return.
Declaration
public List<QueryFilter> Filters { get; set; }
Property Value
Type | Description |
---|---|
List<QueryFilter> |
Order
A list of orders which define how the results should be ordered in the response.
Declaration
public List<QueryOrder> Order { get; set; }
Property Value
Type | Description |
---|---|
List<QueryOrder> |
SampleResults
Whether a random sample of results that match the search filter should be returned.
Declaration
public bool SampleResults { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
Skip
The number of results to skip before selecting results to return. Maximum: 1000. Default: 0.
Declaration
public int Skip { get; set; }
Property Value
Type | Description |
---|---|
Int32 |