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