Struct google_games1::Application [] [src]

pub struct Application {
    pub category: Option<ApplicationCategory>,
    pub theme_color: Option<String>,
    pub description: Option<String>,
    pub author: Option<String>,
    pub last_updated_timestamp: Option<String>,
    pub kind: Option<String>,
    pub instances: Option<Vec<Instance>>,
    pub enabled_features: Option<Vec<String>>,
    pub achievement_count: Option<i32>,
    pub leaderboard_count: Option<i32>,
    pub assets: Option<Vec<ImageAsset>>,
    pub id: Option<String>,
    pub name: Option<String>,
}

This is a JSON template for the Application resource.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

The category of the application.

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").

The description of the application.

The author of the application.

The last updated timestamp of the application.

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

The instances of the application.

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

The number of achievements visible to the currently authenticated player.

The number of leaderboards visible to the currently authenticated player.

The assets of the application.

The ID of the application.

The name of the application.

Trait Implementations

impl Debug for Application
[src]

Formats the value using the given formatter.

impl Clone for Application
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for Application
[src]

Returns the "default value" for a type. Read more

impl Resource for Application
[src]

impl ResponseResult for Application
[src]