/** * 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 VerificationEmailResponse */ export interface VerificationEmailResponse { /** * * @type {string} * @memberof VerificationEmailResponse */ status: VerificationEmailResponseStatusEnum; } /** * @export */ export declare const VerificationEmailResponseStatusEnum: { readonly Success: "success"; }; export type VerificationEmailResponseStatusEnum = typeof VerificationEmailResponseStatusEnum[keyof typeof VerificationEmailResponseStatusEnum]; /** * Check if a given object implements the VerificationEmailResponse interface. */ export declare function instanceOfVerificationEmailResponse(value: object): boolean; export declare function VerificationEmailResponseFromJSON(json: any): VerificationEmailResponse; export declare function VerificationEmailResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): VerificationEmailResponse; export declare function VerificationEmailResponseToJSON(value?: VerificationEmailResponse | null): any;