/** * 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 { LobbyVisibility } from './LobbyVisibility'; import type { Region } from './Region'; /** * * @export * @interface CreateLobbyRequest */ export interface CreateLobbyRequest { /** * * @type {LobbyVisibility} * @memberof CreateLobbyRequest */ visibility: LobbyVisibility; /** * User input to initialize the game state. Object must be smaller than 64KB. * @type {object} * @memberof CreateLobbyRequest */ initialConfig: object; /** * * @type {Region} * @memberof CreateLobbyRequest */ region: Region; } /** * Check if a given object implements the CreateLobbyRequest interface. */ export declare function instanceOfCreateLobbyRequest(value: object): boolean; export declare function CreateLobbyRequestFromJSON(json: any): CreateLobbyRequest; export declare function CreateLobbyRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateLobbyRequest; export declare function CreateLobbyRequestToJSON(value?: CreateLobbyRequest | null): any;