/** * Hathora Cloud API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * 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 LoginAnonymous200Response */ export interface LoginAnonymous200Response { /** * * @type {string} * @memberof LoginAnonymous200Response */ token: string; } /** * Check if a given object implements the LoginAnonymous200Response interface. */ export declare function instanceOfLoginAnonymous200Response(value: object): boolean; export declare function LoginAnonymous200ResponseFromJSON(json: any): LoginAnonymous200Response; export declare function LoginAnonymous200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): LoginAnonymous200Response; export declare function LoginAnonymous200ResponseToJSON(value?: LoginAnonymous200Response | null): any;