/** * 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 NewUserInfo */ export interface NewUserInfo { /** * * @type {string} * @memberof NewUserInfo */ email: string; /** * * @type {string} * @memberof NewUserInfo */ userId: string; } /** * Check if a given object implements the NewUserInfo interface. */ export declare function instanceOfNewUserInfo(value: object): boolean; export declare function NewUserInfoFromJSON(json: any): NewUserInfo; export declare function NewUserInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): NewUserInfo; export declare function NewUserInfoToJSON(value?: NewUserInfo | null): any;