Show / Hide Table of Contents

Class LeaderboardScoreRank

This is a JSON template for a score rank in a leaderboard.

Inheritance
System.Object
LeaderboardScoreRank
Implements
IDirectResponseSchema
Namespace: Google.Apis.Games.v1.Data
Assembly: Google.Apis.Games.v1.dll
Syntax
public class LeaderboardScoreRank : object, IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

FormattedNumScores

The number of scores in the leaderboard as a string.

Declaration
public virtual string FormattedNumScores { get; set; }
Property Value
Type Description
System.String

FormattedRank

The rank in the leaderboard as a string.

Declaration
public virtual string FormattedRank { get; set; }
Property Value
Type Description
System.String

Kind

Uniquely identifies the type of this resource. Value is always the fixed string games#leaderboardScoreRank.

Declaration
public virtual string Kind { get; set; }
Property Value
Type Description
System.String

NumScores

The number of scores in the leaderboard.

Declaration
public virtual Nullable<long> NumScores { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Rank

The rank in the leaderboard.

Declaration
public virtual Nullable<long> Rank { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Implements

IDirectResponseSchema
Back to top