Class: Google::Apis::GamesV1::RoomAutoMatchStatus

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 status of room automatching that is in progress.

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

Returns a new instance of RoomAutoMatchStatus



3232
3233
3234
# File 'generated/google/apis/games_v1/classes.rb', line 3232

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

Instance Attribute Details

#kindString

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

Returns:

  • (String)


3224
3225
3226
# File 'generated/google/apis/games_v1/classes.rb', line 3224

def kind
  @kind
end

#wait_estimate_secondsFixnum

An estimate for the amount of time (in seconds) that auto-matching is expected to take to complete. Corresponds to the JSON property waitEstimateSeconds

Returns:

  • (Fixnum)


3230
3231
3232
# File 'generated/google/apis/games_v1/classes.rb', line 3230

def wait_estimate_seconds
  @wait_estimate_seconds
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3237
3238
3239
3240
# File 'generated/google/apis/games_v1/classes.rb', line 3237

def update!(**args)
  @kind = args[:kind] if args.key?(:kind)
  @wait_estimate_seconds = args[:wait_estimate_seconds] if args.key?(:wait_estimate_seconds)
end