Class: Google::Apis::GamesV1::CreateRoomRequest

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 creation request.

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) ⇒ CreateRoomRequest

Returns a new instance of CreateRoomRequest



3358
3359
3360
# File 'generated/google/apis/games_v1/classes.rb', line 3358

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

Instance Attribute Details

#auto_matching_criteriaGoogle::Apis::GamesV1::RoomAutoMatchingCriteria

This is a JSON template for a room auto-match criteria object. Corresponds to the JSON property autoMatchingCriteria



3317
3318
3319
# File 'generated/google/apis/games_v1/classes.rb', line 3317

def auto_matching_criteria
  @auto_matching_criteria
end

#capabilitiesArray<String>

The capabilities that this client supports for realtime communication. Corresponds to the JSON property capabilities

Returns:

  • (Array<String>)


3322
3323
3324
# File 'generated/google/apis/games_v1/classes.rb', line 3322

def capabilities
  @capabilities
end

#client_addressGoogle::Apis::GamesV1::RoomClientAddress

This is a JSON template for the client address when setting up a room. Corresponds to the JSON property clientAddress



3327
3328
3329
# File 'generated/google/apis/games_v1/classes.rb', line 3327

def client_address
  @client_address
end

#invited_player_idsArray<String>

The player IDs to invite to the room. Corresponds to the JSON property invitedPlayerIds

Returns:

  • (Array<String>)


3332
3333
3334
# File 'generated/google/apis/games_v1/classes.rb', line 3332

def invited_player_ids
  @invited_player_ids
end

#kindString

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

Returns:

  • (String)


3338
3339
3340
# File 'generated/google/apis/games_v1/classes.rb', line 3338

def kind
  @kind
end

#network_diagnosticsGoogle::Apis::GamesV1::NetworkDiagnostics

This is a JSON template for network diagnostics reported for a client. Corresponds to the JSON property networkDiagnostics



3343
3344
3345
# File 'generated/google/apis/games_v1/classes.rb', line 3343

def network_diagnostics
  @network_diagnostics
end

#request_idFixnum

A randomly generated numeric ID. This number is used at the server to ensure that the request is handled correctly across retries. Corresponds to the JSON property requestId

Returns:

  • (Fixnum)


3349
3350
3351
# File 'generated/google/apis/games_v1/classes.rb', line 3349

def request_id
  @request_id
end

#variantFixnum

The variant / mode of the application to be played. This can be any integer value, or left blank. You should use a small number of variants to keep the auto-matching pool as large as possible. Corresponds to the JSON property variant

Returns:

  • (Fixnum)


3356
3357
3358
# File 'generated/google/apis/games_v1/classes.rb', line 3356

def variant
  @variant
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
# File 'generated/google/apis/games_v1/classes.rb', line 3363

def update!(**args)
  @auto_matching_criteria = args[:auto_matching_criteria] if args.key?(:auto_matching_criteria)
  @capabilities = args[:capabilities] if args.key?(:capabilities)
  @client_address = args[:client_address] if args.key?(:client_address)
  @invited_player_ids = args[:invited_player_ids] if args.key?(:invited_player_ids)
  @kind = args[:kind] if args.key?(:kind)
  @network_diagnostics = args[:network_diagnostics] if args.key?(:network_diagnostics)
  @request_id = args[:request_id] if args.key?(:request_id)
  @variant = args[:variant] if args.key?(:variant)
end