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