Class: Google::Apis::GamesV1::TurnBasedAutoMatchingCriteria

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 an turn-based 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) ⇒ TurnBasedAutoMatchingCriteria

Returns a new instance of TurnBasedAutoMatchingCriteria.



4093
4094
4095
# File 'generated/google/apis/games_v1/classes.rb', line 4093

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)


4073
4074
4075
# File 'generated/google/apis/games_v1/classes.rb', line 4073

def exclusive_bitmask
  @exclusive_bitmask
end

#kindString

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

Returns:

  • (String)


4079
4080
4081
# File 'generated/google/apis/games_v1/classes.rb', line 4079

def kind
  @kind
end

#max_auto_matching_playersFixnum

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

Returns:

  • (Fixnum)


4085
4086
4087
# File 'generated/google/apis/games_v1/classes.rb', line 4085

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 match by auto- matching. Corresponds to the JSON property minAutoMatchingPlayers

Returns:

  • (Fixnum)


4091
4092
4093
# File 'generated/google/apis/games_v1/classes.rb', line 4091

def min_auto_matching_players
  @min_auto_matching_players
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4098
4099
4100
4101
4102
4103
# File 'generated/google/apis/games_v1/classes.rb', line 4098

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