Struct google_gamesmanagement1_management::GamesPlayerExperienceInfoResource[][src]

pub struct GamesPlayerExperienceInfoResource {
    pub current_experience_points: Option<String>,
    pub next_level: Option<GamesPlayerLevelResource>,
    pub last_level_up_timestamp_millis: Option<String>,
    pub current_level: Option<GamesPlayerLevelResource>,
}

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.

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

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

The current level of the player.

Trait Implementations

impl Default for GamesPlayerExperienceInfoResource
[src]

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

impl Clone for GamesPlayerExperienceInfoResource
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for GamesPlayerExperienceInfoResource
[src]

Formats the value using the given formatter. Read more

impl Part for GamesPlayerExperienceInfoResource
[src]

Auto Trait Implementations