Class: Google::Apis::GamesV1::RoomAutoMatchingCriteria
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::GamesV1::RoomAutoMatchingCriteria
 
- 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 a room auto-match criteria object.
Instance Attribute Summary collapse
- 
  
    
      #exclusive_bitmask  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A bitmask indicating when auto-matches are valid. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Uniquely identifies the type of this resource. 
- 
  
    
      #max_auto_matching_players  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The maximum number of players that should be added to the room by auto- matching. 
- 
  
    
      #min_auto_matching_players  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The minimum number of players that should be added to the room by auto- matching. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ RoomAutoMatchingCriteria 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of RoomAutoMatchingCriteria. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ RoomAutoMatchingCriteria
Returns a new instance of RoomAutoMatchingCriteria
| 3272 3273 3274 | # File 'generated/google/apis/games_v1/classes.rb', line 3272 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#exclusive_bitmask ⇒ Fixnum
A bitmask indicating when auto-matches are valid. When ANDed with other
exclusive bitmasks, the result must be zero. Can be used to support exclusive
roles within a game.
Corresponds to the JSON property exclusiveBitmask
| 3252 3253 3254 | # File 'generated/google/apis/games_v1/classes.rb', line 3252 def exclusive_bitmask @exclusive_bitmask end | 
#kind ⇒ String
Uniquely identifies the type of this resource. Value is always the fixed
string games#roomAutoMatchingCriteria.
Corresponds to the JSON property kind
| 3258 3259 3260 | # File 'generated/google/apis/games_v1/classes.rb', line 3258 def kind @kind end | 
#max_auto_matching_players ⇒ Fixnum
The maximum number of players that should be added to the room by auto-
matching.
Corresponds to the JSON property maxAutoMatchingPlayers
| 3264 3265 3266 | # File 'generated/google/apis/games_v1/classes.rb', line 3264 def max_auto_matching_players @max_auto_matching_players end | 
#min_auto_matching_players ⇒ Fixnum
The minimum number of players that should be added to the room by auto-
matching.
Corresponds to the JSON property minAutoMatchingPlayers
| 3270 3271 3272 | # File 'generated/google/apis/games_v1/classes.rb', line 3270 def min_auto_matching_players @min_auto_matching_players end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 3277 3278 3279 3280 3281 3282 | # File 'generated/google/apis/games_v1/classes.rb', line 3277 def update!(**args) @exclusive_bitmask = args[:exclusive_bitmask] if args.key?(:exclusive_bitmask) @kind = args[:kind] if args.key?(:kind) @max_auto_matching_players = args[:max_auto_matching_players] if args.key?(:max_auto_matching_players) @min_auto_matching_players = args[:min_auto_matching_players] if args.key?(:min_auto_matching_players) end |