/** * 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. */ /** * Metadata on an allocated instance of a room. * @export * @interface RoomAllocation */ export interface RoomAllocation { /** * * @type {Date} * @memberof RoomAllocation */ unscheduledAt: Date | null; /** * * @type {Date} * @memberof RoomAllocation */ scheduledAt: Date; /** * System generated unique identifier to a runtime instance of your game server. * @type {string} * @memberof RoomAllocation */ processId: string; /** * System generated unique identifier to an allocated instance of a room. * @type {string} * @memberof RoomAllocation */ roomAllocationId: string; } /** * Check if a given object implements the RoomAllocation interface. */ export declare function instanceOfRoomAllocation(value: object): boolean; export declare function RoomAllocationFromJSON(json: any): RoomAllocation; export declare function RoomAllocationFromJSONTyped(json: any, ignoreDiscriminator: boolean): RoomAllocation; export declare function RoomAllocationToJSON(value?: RoomAllocation | null): any;