Show / Hide Table of Contents

Class TurnBasedMatchData

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

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

Properties

Data

The byte representation of the data (limited to 128 kB), as a Base64-encoded string with the URL_SAFE encoding option.

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

DataAvailable

True if this match has data available but it wasn't returned in a list response; fetching the match individually will retrieve this data.

Declaration
public virtual Nullable<bool> DataAvailable { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

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#turnBasedMatchData.

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

Implements

IDirectResponseSchema
Back to top