/* 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 VerificationEmailSuccess = { Success: 'success' } as const; export type VerificationEmailSuccess = typeof VerificationEmailSuccess[keyof typeof VerificationEmailSuccess]; export function VerificationEmailSuccessFromJSON(json: any): VerificationEmailSuccess { return VerificationEmailSuccessFromJSONTyped(json, false); } export function VerificationEmailSuccessFromJSONTyped(json: any, ignoreDiscriminator: boolean): VerificationEmailSuccess { return json as VerificationEmailSuccess; } export function VerificationEmailSuccessToJSON(value?: VerificationEmailSuccess | null): any { return value as any; }