Class: Google::Apis::GamesV1::GamesAchievementSetStepsAtLeast
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::GamesV1::GamesAchievementSetStepsAtLeast
 
 
- 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 the payload to request to increment an achievement.
Instance Attribute Summary collapse
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Uniquely identifies the type of this resource.
 - 
  
    
      #steps  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The minimum number of steps for the achievement to be set to.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GamesAchievementSetStepsAtLeast 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GamesAchievementSetStepsAtLeast.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GamesAchievementSetStepsAtLeast
Returns a new instance of GamesAchievementSetStepsAtLeast
      1172 1173 1174  | 
    
      # File 'generated/google/apis/games_v1/classes.rb', line 1172 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#kind ⇒ String
Uniquely identifies the type of this resource. Value is always the fixed
string games#GamesAchievementSetStepsAtLeast.
Corresponds to the JSON property kind
      1165 1166 1167  | 
    
      # File 'generated/google/apis/games_v1/classes.rb', line 1165 def kind @kind end  | 
  
#steps ⇒ Fixnum
The minimum number of steps for the achievement to be set to.
Corresponds to the JSON property steps
      1170 1171 1172  | 
    
      # File 'generated/google/apis/games_v1/classes.rb', line 1170 def steps @steps end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1177 1178 1179 1180  | 
    
      # File 'generated/google/apis/games_v1/classes.rb', line 1177 def update!(**args) @kind = args[:kind] if args.key?(:kind) @steps = args[:steps] if args.key?(:steps) end  |