Show / Hide Table of Contents

Class EventDefinition

This is a JSON template for an event definition resource.

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

Properties

ChildEvents

A list of events that are a child of this event.

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

Description

Description of what this event represents.

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

DisplayName

The name to display for the event.

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

ETag

The ETag of the item.

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

Id

The ID of the event.

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

ImageUrl

The base URL for the image that represents the event.

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

IsDefaultImageUrl

Indicates whether the icon image being returned is a default image, or is game-provided.

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

Kind

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

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

Visibility

The visibility of event being tracked in this definition. Possible values are: - "REVEALED": This event should be visible to all users. - "HIDDEN": This event should only be shown to users that have recorded this event at least once.

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

Implements

IDirectResponseSchema
Back to top