Show / Hide Table of Contents

Class EventRecordRequest

This is a JSON template for an event period update resource.

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

Properties

CurrentTimeMillis

The current time when this update was sent, in milliseconds, since 1970 UTC (Unix Epoch).

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

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

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

RequestId

The request ID used to identify this attempt to record events.

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

TimePeriods

A list of the time period updates being made in this request.

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

Implements

IDirectResponseSchema
Back to top