/** * 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 */ export declare const Region: { readonly Seattle: "Seattle"; readonly LosAngeles: "Los_Angeles"; readonly WashingtonDc: "Washington_DC"; readonly Chicago: "Chicago"; readonly London: "London"; readonly Frankfurt: "Frankfurt"; readonly Mumbai: "Mumbai"; readonly Singapore: "Singapore"; readonly Tokyo: "Tokyo"; readonly Sydney: "Sydney"; readonly SaoPaulo: "Sao_Paulo"; readonly Dallas: "Dallas"; }; export type Region = typeof Region[keyof typeof Region]; export declare function RegionFromJSON(json: any): Region; export declare function RegionFromJSONTyped(json: any, ignoreDiscriminator: boolean): Region; export declare function RegionToJSON(value?: Region | null): any;