Show / Hide Table of Contents

Class PlayerScoreResponse

This is a JSON template for a list of leaderboard entry resources.

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

Properties

BeatenScoreTimeSpans

The time spans where the submitted score is better than the existing score for that time span. Possible values are: - "ALL_TIME" - The score is an all-time score. - "WEEKLY" - The score is a weekly score. - "DAILY" - The score is a daily score.

Declaration
public virtual IList<string> BeatenScoreTimeSpans { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

ETag

The ETag of the item.

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

FormattedScore

The formatted value of the submitted score.

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

Kind

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

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

LeaderboardId

The leaderboard ID that this score was submitted to.

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

ScoreTag

Additional information about this score. Values will contain no more than 64 URI-safe characters as defined by section 2.3 of RFC 3986.

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

UnbeatenScores

The scores in time spans that have not been beaten. As an example, the submitted score may be better than the player's DAILY score, but not better than the player's scores for the WEEKLY or ALL_TIME time spans.

Declaration
public virtual IList<PlayerScore> UnbeatenScores { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<PlayerScore>

Implements

IDirectResponseSchema
Back to top