Class: Google::Apis::GamesV1::PlayerExperienceInfo

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/games_v1/classes.rb,
generated/google/apis/games_v1/representations.rb,
generated/google/apis/games_v1/representations.rb

Overview

1P/3P metadata about the player's experience.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PlayerExperienceInfo

Returns a new instance of PlayerExperienceInfo.



1957
1958
1959
# File 'generated/google/apis/games_v1/classes.rb', line 1957

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#current_experience_pointsFixnum

The current number of experience points for the player. Corresponds to the JSON property currentExperiencePoints

Returns:

  • (Fixnum)


1934
1935
1936
# File 'generated/google/apis/games_v1/classes.rb', line 1934

def current_experience_points
  @current_experience_points
end

#current_levelGoogle::Apis::GamesV1::PlayerLevel

1P/3P metadata about a user's level. Corresponds to the JSON property currentLevel



1939
1940
1941
# File 'generated/google/apis/games_v1/classes.rb', line 1939

def current_level
  @current_level
end

#kindString

Uniquely identifies the type of this resource. Value is always the fixed string games#playerExperienceInfo. Corresponds to the JSON property kind

Returns:

  • (String)


1945
1946
1947
# File 'generated/google/apis/games_v1/classes.rb', line 1945

def kind
  @kind
end

#last_level_up_timestamp_millisFixnum

The timestamp when the player was leveled up, in millis since Unix epoch UTC. Corresponds to the JSON property lastLevelUpTimestampMillis

Returns:

  • (Fixnum)


1950
1951
1952
# File 'generated/google/apis/games_v1/classes.rb', line 1950

def last_level_up_timestamp_millis
  @last_level_up_timestamp_millis
end

#next_levelGoogle::Apis::GamesV1::PlayerLevel

1P/3P metadata about a user's level. Corresponds to the JSON property nextLevel



1955
1956
1957
# File 'generated/google/apis/games_v1/classes.rb', line 1955

def next_level
  @next_level
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1962
1963
1964
1965
1966
1967
1968
# File 'generated/google/apis/games_v1/classes.rb', line 1962

def update!(**args)
  @current_experience_points = args[:current_experience_points] if args.key?(:current_experience_points)
  @current_level = args[:current_level] if args.key?(:current_level)
  @kind = args[:kind] if args.key?(:kind)
  @last_level_up_timestamp_millis = args[:last_level_up_timestamp_millis] if args.key?(:last_level_up_timestamp_millis)
  @next_level = args[:next_level] if args.key?(:next_level)
end