Struct google_games1::PlayerExperienceInfo [] [src]

pub struct PlayerExperienceInfo {
    pub current_experience_points: Option<String>,
    pub kind: Option<String>,
    pub last_level_up_timestamp_millis: Option<String>,
    pub next_level: Option<PlayerLevel>,
    pub current_level: Option<PlayerLevel>,
}

This is a JSON template for 1P/3P metadata about the player's experience.

This type is not used in any activity, and only used as part of another schema.

Fields

The current number of experience points for the player.

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

The timestamp when the player was leveled up, in millis since Unix epoch UTC.

The next level of the player. If the current level is the maximum level, this should be same as the current level.

The current level of the player.

Trait Implementations

impl Debug for PlayerExperienceInfo
[src]

Formats the value using the given formatter.

impl Clone for PlayerExperienceInfo
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for PlayerExperienceInfo
[src]

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

impl Part for PlayerExperienceInfo
[src]