Class: Google::Apis::GamesV1::RoomAutoMatchingCriteria

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

This is a JSON template for a room auto-match criteria object.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ RoomAutoMatchingCriteria

Returns a new instance of RoomAutoMatchingCriteria.



3270
3271
3272
# File 'generated/google/apis/games_v1/classes.rb', line 3270

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

Instance Attribute Details

#exclusive_bitmaskString

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

Returns:

  • (String)


3250
3251
3252
# File 'generated/google/apis/games_v1/classes.rb', line 3250

def exclusive_bitmask
  @exclusive_bitmask
end

#kindString

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

Returns:

  • (String)


3256
3257
3258
# File 'generated/google/apis/games_v1/classes.rb', line 3256

def kind
  @kind
end

#max_auto_matching_playersFixnum

The maximum number of players that should be added to the room by auto- matching. Corresponds to the JSON property maxAutoMatchingPlayers

Returns:

  • (Fixnum)


3262
3263
3264
# File 'generated/google/apis/games_v1/classes.rb', line 3262

def max_auto_matching_players
  @max_auto_matching_players
end

#min_auto_matching_playersFixnum

The minimum number of players that should be added to the room by auto- matching. Corresponds to the JSON property minAutoMatchingPlayers

Returns:

  • (Fixnum)


3268
3269
3270
# File 'generated/google/apis/games_v1/classes.rb', line 3268

def min_auto_matching_players
  @min_auto_matching_players
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3275
3276
3277
3278
3279
3280
# File 'generated/google/apis/games_v1/classes.rb', line 3275

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