Class MultiplayAllocationsPagination
An object used to contain data about the pagination of the list allocations.
Inherited Members
Namespace: Unity.Services.Apis.Multiplay
Assembly: Unity.Services.Apis.dll
Syntax
[DataContract(Name = "multiplay.allocations.Pagination")]
[Preserve]
public class MultiplayAllocationsPagination
Constructors
MultiplayAllocationsPagination(int, int)
Initializes a new instance of the Multiplay
Declaration
[Preserve]
public MultiplayAllocationsPagination(int limit = 0, int offset = 0)
Parameters
Type | Name | Description |
---|---|---|
int | limit | The number of results returned.. |
int | offset | The offset for the results returned.. |
Properties
Limit
The number of results returned.
Declaration
[DataMember(Name = "limit", EmitDefaultValue = false)]
[Preserve]
public int Limit { get; set; }
Property Value
Type | Description |
---|---|
int | The number of results returned. |
Offset
The offset for the results returned.
Declaration
[DataMember(Name = "offset", EmitDefaultValue = false)]
[Preserve]
public int Offset { get; set; }
Property Value
Type | Description |
---|---|
int | The offset for the results returned. |