Class: Google::Apis::GamesV1::RoomStatus
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::GamesV1::RoomStatus
 
- 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 the status of a room that the player has joined.
Instance Attribute Summary collapse
- 
  
    
      #auto_matching_status  ⇒ Google::Apis::GamesV1::RoomAutoMatchStatus 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    This is a JSON template for status of room automatching that is in progress. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Uniquely identifies the type of this resource. 
- 
  
    
      #participants  ⇒ Array<Google::Apis::GamesV1::RoomParticipant> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The participants involved in the room, along with their statuses. 
- 
  
    
      #room_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Globally unique ID for a room. 
- 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The status of the room. 
- 
  
    
      #status_version  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The version of the status for the room: an increasing counter, used by the client to ignore out-of-order updates to room status. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ RoomStatus 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of RoomStatus. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ RoomStatus
Returns a new instance of RoomStatus
| 3842 3843 3844 | # File 'generated/google/apis/games_v1/classes.rb', line 3842 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#auto_matching_status ⇒ Google::Apis::GamesV1::RoomAutoMatchStatus
This is a JSON template for status of room automatching that is in progress.
Corresponds to the JSON property autoMatchingStatus
| 3805 3806 3807 | # File 'generated/google/apis/games_v1/classes.rb', line 3805 def auto_matching_status @auto_matching_status end | 
#kind ⇒ String
Uniquely identifies the type of this resource. Value is always the fixed
string games#roomStatus.
Corresponds to the JSON property kind
| 3811 3812 3813 | # File 'generated/google/apis/games_v1/classes.rb', line 3811 def kind @kind end | 
#participants ⇒ Array<Google::Apis::GamesV1::RoomParticipant>
The participants involved in the room, along with their statuses. Includes
participants who have left or declined invitations.
Corresponds to the JSON property participants
| 3817 3818 3819 | # File 'generated/google/apis/games_v1/classes.rb', line 3817 def participants @participants end | 
#room_id ⇒ String
Globally unique ID for a room.
Corresponds to the JSON property roomId
| 3822 3823 3824 | # File 'generated/google/apis/games_v1/classes.rb', line 3822 def room_id @room_id end | 
#status ⇒ String
The status of the room. Possible values are:
- "ROOM_INVITING" - One or more players have been invited and not responded.
- "ROOM_AUTO_MATCHING" - One or more slots need to be filled by auto-matching.
- "ROOM_CONNECTING" - Players have joined are connecting to each other (either before or after auto-matching).
- "ROOM_ACTIVE" - All players have joined and connected to each other.
- "ROOM_DELETED" - All joined players have left.
Corresponds to the JSON property status
| 3834 3835 3836 | # File 'generated/google/apis/games_v1/classes.rb', line 3834 def status @status end | 
#status_version ⇒ Fixnum
The version of the status for the room: an increasing counter, used by the
client to ignore out-of-order updates to room status.
Corresponds to the JSON property statusVersion
| 3840 3841 3842 | # File 'generated/google/apis/games_v1/classes.rb', line 3840 def status_version @status_version end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 3847 3848 3849 3850 3851 3852 3853 3854 | # File 'generated/google/apis/games_v1/classes.rb', line 3847 def update!(**args) @auto_matching_status = args[:auto_matching_status] if args.key?(:auto_matching_status) @kind = args[:kind] if args.key?(:kind) @participants = args[:participants] if args.key?(:participants) @room_id = args[:room_id] if args.key?(:room_id) @status = args[:status] if args.key?(:status) @status_version = args[:status_version] if args.key?(:status_version) end |