Class LeaderboardVersionScoresPage
LeaderboardVersionScoresPage model
Inherited Members
Namespace: Unity.Services.Leaderboards.Models
Assembly: Unity.Services.Leaderboards.dll
Syntax
[Preserve]
[DataContract(Name = "LeaderboardVersionScoresPage")]
public class LeaderboardVersionScoresPage
Constructors
LeaderboardVersionScoresPage(LeaderboardVersion, int, int, int, List<LeaderboardEntry>)
Creates an instance of LeaderboardVersionScoresPage.
Declaration
[Preserve]
public LeaderboardVersionScoresPage(LeaderboardVersion version = null, int offset = 0, int limit = 0, int total = 0, List<LeaderboardEntry> results = null)
Parameters
Type | Name | Description |
---|---|---|
LeaderboardVersion | version | version param |
int | offset | offset param |
int | limit | limit param |
int | total | total param |
List<LeaderboardEntry> | results | results param |
Properties
Limit
Parameter limit of LeaderboardVersionScoresPage
Declaration
[Preserve]
[DataMember(Name = "limit", EmitDefaultValue = false)]
public int Limit { get; }
Property Value
Type | Description |
---|---|
int |
Offset
Parameter offset of LeaderboardVersionScoresPage
Declaration
[Preserve]
[DataMember(Name = "offset", EmitDefaultValue = false)]
public int Offset { get; }
Property Value
Type | Description |
---|---|
int |
Results
Parameter results of LeaderboardVersionScoresPage
Declaration
[Preserve]
[DataMember(Name = "results", EmitDefaultValue = false)]
public List<LeaderboardEntry> Results { get; }
Property Value
Type | Description |
---|---|
List<LeaderboardEntry> |
Total
Parameter total of LeaderboardVersionScoresPage
Declaration
[Preserve]
[DataMember(Name = "total", EmitDefaultValue = false)]
public int Total { get; }
Property Value
Type | Description |
---|---|
int |
Version
Parameter version of LeaderboardVersionScoresPage
Declaration
[Preserve]
[DataMember(Name = "version", EmitDefaultValue = false)]
public LeaderboardVersion Version { get; }
Property Value
Type | Description |
---|---|
LeaderboardVersion |