/** * 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 CreateRoomResponseAllOf */ export interface CreateRoomResponseAllOf { /** * System generated unique identifier to a runtime instance of your game server. * @type {string} * @memberof CreateRoomResponseAllOf */ processId: string; } /** * Check if a given object implements the CreateRoomResponseAllOf interface. */ export declare function instanceOfCreateRoomResponseAllOf(value: object): boolean; export declare function CreateRoomResponseAllOfFromJSON(json: any): CreateRoomResponseAllOf; export declare function CreateRoomResponseAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateRoomResponseAllOf; export declare function CreateRoomResponseAllOfToJSON(value?: CreateRoomResponseAllOf | null): any;