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