/** * 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 StartingConnectionInfo */ export interface StartingConnectionInfo { /** * * @type {string} * @memberof StartingConnectionInfo */ status: StartingConnectionInfoStatusEnum; /** * Unique identifier to a game session or match. Use the default system generated ID or overwrite it with your own. * Note: error will be returned if `roomId` is not globally unique. * @type {string} * @memberof StartingConnectionInfo */ roomId: string; } /** * @export */ export declare const StartingConnectionInfoStatusEnum: { readonly Starting: "starting"; }; export type StartingConnectionInfoStatusEnum = typeof StartingConnectionInfoStatusEnum[keyof typeof StartingConnectionInfoStatusEnum]; /** * Check if a given object implements the StartingConnectionInfo interface. */ export declare function instanceOfStartingConnectionInfo(value: object): boolean; export declare function StartingConnectionInfoFromJSON(json: any): StartingConnectionInfo; export declare function StartingConnectionInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): StartingConnectionInfo; export declare function StartingConnectionInfoToJSON(value?: StartingConnectionInfo | null): any;