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