Show / Hide Table of Contents

Class RoomCreateRequest

This is a JSON template for a room creation request.

Inheritance
System.Object
RoomCreateRequest
Implements
IDirectResponseSchema
Namespace: Google.Apis.Games.v1.Data
Assembly: Google.Apis.Games.v1.dll
Syntax
public class RoomCreateRequest : object, IDirectResponseSchema

Properties

AutoMatchingCriteria

Criteria for auto-matching players into this room.

Declaration
public virtual RoomAutoMatchingCriteria AutoMatchingCriteria { get; set; }
Property Value
Type Description
RoomAutoMatchingCriteria

Capabilities

The capabilities that this client supports for realtime communication.

Declaration
public virtual IList<string> Capabilities { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

ClientAddress

Client address for the player creating the room.

Declaration
public virtual RoomClientAddress ClientAddress { get; set; }
Property Value
Type Description
RoomClientAddress

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

InvitedPlayerIds

The player IDs to invite to the room.

Declaration
public virtual IList<string> InvitedPlayerIds { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Kind

Uniquely identifies the type of this resource. Value is always the fixed string games#roomCreateRequest.

Declaration
public virtual string Kind { get; set; }
Property Value
Type Description
System.String

NetworkDiagnostics

Network diagnostics for the client creating the room.

Declaration
public virtual NetworkDiagnostics NetworkDiagnostics { get; set; }
Property Value
Type Description
NetworkDiagnostics

RequestId

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

Declaration
public virtual Nullable<long> RequestId { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Variant

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.

Declaration
public virtual Nullable<int> Variant { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Implements

IDirectResponseSchema
Back to top