/** * 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. */ import type { CreateAppRequestAuthConfigurationGoogle } from './CreateAppRequestAuthConfigurationGoogle'; /** * * @export * @interface CreateAppRequestAuthConfiguration */ export interface CreateAppRequestAuthConfiguration { /** * * @type {CreateAppRequestAuthConfigurationGoogle} * @memberof CreateAppRequestAuthConfiguration */ google?: CreateAppRequestAuthConfigurationGoogle; /** * Construct a type with a set of properties K of type T * @type {object} * @memberof CreateAppRequestAuthConfiguration */ nickname?: object; /** * Construct a type with a set of properties K of type T * @type {object} * @memberof CreateAppRequestAuthConfiguration */ anonymous?: object; } /** * Check if a given object implements the CreateAppRequestAuthConfiguration interface. */ export declare function instanceOfCreateAppRequestAuthConfiguration(value: object): boolean; export declare function CreateAppRequestAuthConfigurationFromJSON(json: any): CreateAppRequestAuthConfiguration; export declare function CreateAppRequestAuthConfigurationFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateAppRequestAuthConfiguration; export declare function CreateAppRequestAuthConfigurationToJSON(value?: CreateAppRequestAuthConfiguration | null): any;