/** * 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 CreateUserInvite */ export interface CreateUserInvite { /** * * @type {string} * @memberof CreateUserInvite */ userEmail: string; } /** * Check if a given object implements the CreateUserInvite interface. */ export declare function instanceOfCreateUserInvite(value: object): boolean; export declare function CreateUserInviteFromJSON(json: any): CreateUserInvite; export declare function CreateUserInviteFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateUserInvite; export declare function CreateUserInviteToJSON(value?: CreateUserInvite | null): any;