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.



2945
2946
2947
# File 'generated/google/apis/games_v1/classes.rb', line 2945

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)


2937
2938
2939
# File 'generated/google/apis/games_v1/classes.rb', line 2937

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)


2943
2944
2945
# File 'generated/google/apis/games_v1/classes.rb', line 2943

def wait_estimate_seconds
  @wait_estimate_seconds
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2950
2951
2952
2953
# File 'generated/google/apis/games_v1/classes.rb', line 2950

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