Show / Hide Table of Contents

Class PlayerScore

This is a JSON template for a player score.

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

Properties

ETag

The ETag of the item.

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

FormattedScore

The formatted score for this player 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#playerScore.

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

Score

The numerical value for this player score.

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

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

TimeSpan

The time span for this player score. 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 string TimeSpan { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top