/** * 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 LoginNicknameRequest */ export interface LoginNicknameRequest { /** * An alias to represent a player. * @type {string} * @memberof LoginNicknameRequest */ nickname: string; } /** * Check if a given object implements the LoginNicknameRequest interface. */ export declare function instanceOfLoginNicknameRequest(value: object): boolean; export declare function LoginNicknameRequestFromJSON(json: any): LoginNicknameRequest; export declare function LoginNicknameRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): LoginNicknameRequest; export declare function LoginNicknameRequestToJSON(value?: LoginNicknameRequest | null): any;