/** * Hathora Cloud API * Welcome to the Hathora Cloud API documentation! Learn how to use the Hathora Cloud APIs to build and scale your game servers globally. * * The version of the OpenAPI document: 0.0.1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { Region } from './Region'; /** * * @export * @interface CreateRoomRequest */ export interface CreateRoomRequest { /** * Optional configuration parameters for the room. Can be any string including stringified JSON. It is accessible from the room via [`GetRoomInfo()`](https://hathora.dev/api#tag/RoomV2/operation/GetRoomInfo). * @type {string} * @memberof CreateRoomRequest */ roomConfig?: string; /** * * @type {Region} * @memberof CreateRoomRequest */ region: Region; } /** * Check if a given object implements the CreateRoomRequest interface. */ export declare function instanceOfCreateRoomRequest(value: object): boolean; export declare function CreateRoomRequestFromJSON(json: any): CreateRoomRequest; export declare function CreateRoomRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateRoomRequest; export declare function CreateRoomRequestToJSON(value?: CreateRoomRequest | null): any;