/** * 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. */ /** * * @export * @interface SetLobbyStateRequest */ export interface SetLobbyStateRequest { /** * JSON blob to store metadata for a room. Must be smaller than 1MB. * @type {object} * @memberof SetLobbyStateRequest */ state: object; } /** * Check if a given object implements the SetLobbyStateRequest interface. */ export declare function instanceOfSetLobbyStateRequest(value: object): boolean; export declare function SetLobbyStateRequestFromJSON(json: any): SetLobbyStateRequest; export declare function SetLobbyStateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SetLobbyStateRequest; export declare function SetLobbyStateRequestToJSON(value?: SetLobbyStateRequest | null): any;