Class: Google::Apis::GamesV1::PlayerAchievement
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::GamesV1::PlayerAchievement
 
- 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
This is a JSON template for an achievement object.
Instance Attribute Summary collapse
- 
  
    
      #achievement_state  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The state of the achievement. 
- 
  
    
      #current_steps  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The current steps for an incremental achievement. 
- 
  
    
      #experience_points  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Experience points earned for the achievement. 
- 
  
    
      #formatted_current_steps_string  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The current steps for an incremental achievement as a string. 
- 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ID of the achievement. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Uniquely identifies the type of this resource. 
- 
  
    
      #last_updated_timestamp  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The timestamp of the last modification to this achievement's state. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ PlayerAchievement 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of PlayerAchievement. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ PlayerAchievement
Returns a new instance of PlayerAchievement
| 2144 2145 2146 | # File 'generated/google/apis/games_v1/classes.rb', line 2144 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#achievement_state ⇒ String
The state of the achievement. Possible values are:
- "HIDDEN" - Achievement is hidden.
- "REVEALED" - Achievement is revealed.
- "UNLOCKED" - Achievement is unlocked.
Corresponds to the JSON property achievementState
| 2109 2110 2111 | # File 'generated/google/apis/games_v1/classes.rb', line 2109 def achievement_state @achievement_state end | 
#current_steps ⇒ Fixnum
The current steps for an incremental achievement.
Corresponds to the JSON property currentSteps
| 2114 2115 2116 | # File 'generated/google/apis/games_v1/classes.rb', line 2114 def current_steps @current_steps end | 
#experience_points ⇒ Fixnum
Experience points earned for the achievement. This field is absent for
achievements that have not yet been unlocked and 0 for achievements that have
been unlocked by testers but that are unpublished.
Corresponds to the JSON property experiencePoints
| 2121 2122 2123 | # File 'generated/google/apis/games_v1/classes.rb', line 2121 def experience_points @experience_points end | 
#formatted_current_steps_string ⇒ String
The current steps for an incremental achievement as a string.
Corresponds to the JSON property formattedCurrentStepsString
| 2126 2127 2128 | # File 'generated/google/apis/games_v1/classes.rb', line 2126 def formatted_current_steps_string @formatted_current_steps_string end | 
#id ⇒ String
The ID of the achievement.
Corresponds to the JSON property id
| 2131 2132 2133 | # File 'generated/google/apis/games_v1/classes.rb', line 2131 def id @id end | 
#kind ⇒ String
Uniquely identifies the type of this resource. Value is always the fixed
string games#playerAchievement.
Corresponds to the JSON property kind
| 2137 2138 2139 | # File 'generated/google/apis/games_v1/classes.rb', line 2137 def kind @kind end | 
#last_updated_timestamp ⇒ Fixnum
The timestamp of the last modification to this achievement's state.
Corresponds to the JSON property lastUpdatedTimestamp
| 2142 2143 2144 | # File 'generated/google/apis/games_v1/classes.rb', line 2142 def @last_updated_timestamp end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2149 2150 2151 2152 2153 2154 2155 2156 2157 | # File 'generated/google/apis/games_v1/classes.rb', line 2149 def update!(**args) @achievement_state = args[:achievement_state] if args.key?(:achievement_state) @current_steps = args[:current_steps] if args.key?(:current_steps) @experience_points = args[:experience_points] if args.key?(:experience_points) @formatted_current_steps_string = args[:formatted_current_steps_string] if args.key?(:formatted_current_steps_string) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @last_updated_timestamp = args[:last_updated_timestamp] if args.key?(:last_updated_timestamp) end |