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.
2992 2993 2994 |
# File 'generated/google/apis/games_v1/classes.rb', line 2992 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
2972 2973 2974 |
# File 'generated/google/apis/games_v1/classes.rb', line 2972 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
2978 2979 2980 |
# File 'generated/google/apis/games_v1/classes.rb', line 2978 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
2984 2985 2986 |
# File 'generated/google/apis/games_v1/classes.rb', line 2984 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
2990 2991 2992 |
# File 'generated/google/apis/games_v1/classes.rb', line 2990 def min_auto_matching_players @min_auto_matching_players end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2997 2998 2999 3000 3001 3002 |
# File 'generated/google/apis/games_v1/classes.rb', line 2997 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 |