class Google::Apis::GamesV1::RoomAutoMatchStatus
This is a JSON template for status of room automatching that is in progress.
Attributes
kind[RW]
Uniquely identifies the type of this resource. Value is always the fixed string games#roomAutoMatchStatus. Corresponds to the JSON property `kind` @return [String]
wait_estimate_seconds[RW]
An estimate for the amount of time (in seconds) that auto-matching is expected to take to complete. Corresponds to the JSON property `waitEstimateSeconds` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/games_v1/classes.rb, line 3196 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/games_v1/classes.rb, line 3201 def update!(**args) @kind = args[:kind] if args.key?(:kind) @wait_estimate_seconds = args[:wait_estimate_seconds] if args.key?(:wait_estimate_seconds) end