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