/** * 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'; /** * Used to authenticate player requests. Use your own authentication or Hathora's Auth Client. * @export * @interface ApplicationAuthConfiguration */ export interface ApplicationAuthConfiguration { /** * * @type {ApplicationAuthConfigurationGoogle} * @memberof ApplicationAuthConfiguration */ google?: ApplicationAuthConfigurationGoogle; /** * Construct a type with a set of properties K of type T * @type {object} * @memberof ApplicationAuthConfiguration */ nickname?: object; /** * Construct a type with a set of properties K of type T * @type {object} * @memberof ApplicationAuthConfiguration */ anonymous?: object; } /** * Check if a given object implements the ApplicationAuthConfiguration interface. */ export declare function instanceOfApplicationAuthConfiguration(value: object): boolean; export declare function ApplicationAuthConfigurationFromJSON(json: any): ApplicationAuthConfiguration; export declare function ApplicationAuthConfigurationFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApplicationAuthConfiguration; export declare function ApplicationAuthConfigurationToJSON(value?: ApplicationAuthConfiguration | null): any;