Show / Hide Table of Contents

Class TurnBasedMatchResults

This is a JSON template for a turn-based match results object.

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

Properties

Data

The final match data.

Declaration
public virtual TurnBasedMatchDataRequest Data { get; set; }
Property Value
Type Description
TurnBasedMatchDataRequest

ETag

The ETag of the item.

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

Kind

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

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

MatchVersion

The version of the match being updated.

Declaration
public virtual Nullable<int> MatchVersion { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Results

The match results for the participants in the match.

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

Implements

IDirectResponseSchema
Back to top