[][src]Struct google_games1::AchievementDefinition

pub struct AchievementDefinition {
    pub total_steps: Option<i32>,
    pub achievement_type: Option<String>,
    pub description: Option<String>,
    pub formatted_total_steps: Option<String>,
    pub kind: Option<String>,
    pub initial_state: Option<String>,
    pub experience_points: Option<String>,
    pub id: Option<String>,
    pub is_revealed_icon_url_default: Option<bool>,
    pub unlocked_icon_url: Option<String>,
    pub revealed_icon_url: Option<String>,
    pub is_unlocked_icon_url_default: Option<bool>,
    pub name: Option<String>,
}

This is a JSON template for an achievement definition object.

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

total_steps: Option<i32>

The total steps for an incremental achievement.

achievement_type: Option<String>

The type of the achievement. Possible values are:

  • "STANDARD" - Achievement is either locked or unlocked.
  • "INCREMENTAL" - Achievement is incremental.
description: Option<String>

The description of the achievement.

formatted_total_steps: Option<String>

The total steps for an incremental achievement as a string.

kind: Option<String>

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

initial_state: Option<String>

The initial state of the achievement. Possible values are:

  • "HIDDEN" - Achievement is hidden.
  • "REVEALED" - Achievement is revealed.
  • "UNLOCKED" - Achievement is unlocked.
experience_points: Option<String>

Experience points which will be earned when unlocking this achievement.

id: Option<String>

The ID of the achievement.

is_revealed_icon_url_default: Option<bool>

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

unlocked_icon_url: Option<String>

The image URL for the unlocked achievement icon.

revealed_icon_url: Option<String>

The image URL for the revealed achievement icon.

is_unlocked_icon_url_default: Option<bool>

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

name: Option<String>

The name of the achievement.

Trait Implementations

impl Resource for AchievementDefinition[src]

impl Default for AchievementDefinition[src]

impl Clone for AchievementDefinition[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for AchievementDefinition[src]

impl Serialize for AchievementDefinition[src]

impl<'de> Deserialize<'de> for AchievementDefinition[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]