Show / Hide Table of Contents

Class Application

This is a JSON template for the Application resource.

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

Properties

AchievementCount

The number of achievements visible to the currently authenticated player.

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

Assets

The assets of the application.

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

Author

The author of the application.

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

Category

The category of the application.

Declaration
public virtual ApplicationCategory Category { get; set; }
Property Value
Type Description
ApplicationCategory

Description

The description of the application.

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

EnabledFeatures

A list of features that have been enabled for the application. Possible values are: - "SNAPSHOTS" - Snapshots has been enabled

Declaration
public virtual IList<string> EnabledFeatures { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<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 application.

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

Instances

The instances of the application.

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

Kind

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

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

LastUpdatedTimestamp

The last updated timestamp of the application.

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

LeaderboardCount

The number of leaderboards visible to the currently authenticated player.

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

Name

The name of the application.

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

ThemeColor

A hint to the client UI for what color to use as an app-themed color. The color is given as an RGB triplet (e.g. "E0E0E0").

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

Implements

IDirectResponseSchema
Back to top