Struct google_gamesconfiguration1_configuration::LeaderboardConfiguration[][src]

pub struct LeaderboardConfiguration {
    pub kind: Option<String>,
    pub score_order: Option<String>,
    pub score_min: Option<String>,
    pub token: Option<String>,
    pub score_max: Option<String>,
    pub published: Option<LeaderboardConfigurationDetail>,
    pub draft: Option<LeaderboardConfigurationDetail>,
    pub id: Option<String>,
}

This is a JSON template for an leaderboard configuration 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

Uniquely identifies the type of this resource. Value is always the fixed string gamesConfiguration#leaderboardConfiguration.

The type of the leaderboard. Possible values are:

  • "LARGER_IS_BETTER" - Larger scores posted are ranked higher.
  • "SMALLER_IS_BETTER" - Smaller scores posted are ranked higher.

Minimum score that can be posted to this leaderboard.

The token for this resource.

Maximum score that can be posted to this leaderboard.

The read-only published data of the leaderboard.

The draft data of the leaderboard.

The ID of the leaderboard.

Trait Implementations

impl Default for LeaderboardConfiguration
[src]

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

impl Clone for LeaderboardConfiguration
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for LeaderboardConfiguration
[src]

Formats the value using the given formatter. Read more

impl RequestValue for LeaderboardConfiguration
[src]

impl Resource for LeaderboardConfiguration
[src]

impl ResponseResult for LeaderboardConfiguration
[src]

Auto Trait Implementations