/** * 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. */ /** * The allocation status of a room. * * `scheduling`: a process is not allocated yet and the room is waiting to be scheduled * * `active`: ready to accept connections * * `destroyed`: all associated metadata is deleted * @export */ export declare const RoomStatus: { readonly Scheduling: "scheduling"; readonly Active: "active"; readonly Destroyed: "destroyed"; }; export type RoomStatus = typeof RoomStatus[keyof typeof RoomStatus]; export declare function RoomStatusFromJSON(json: any): RoomStatus; export declare function RoomStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): RoomStatus; export declare function RoomStatusToJSON(value?: RoomStatus | null): any;