/** * 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 LoginGoogleRequest */ export interface LoginGoogleRequest { /** * A Google-signed OIDC ID token representing a player's authenticated identity. Learn how to get an `idToken` [here](https://cloud.google.com/docs/authentication/get-id-token). * @type {string} * @memberof LoginGoogleRequest */ idToken: string; } /** * Check if a given object implements the LoginGoogleRequest interface. */ export declare function instanceOfLoginGoogleRequest(value: object): boolean; export declare function LoginGoogleRequestFromJSON(json: any): LoginGoogleRequest; export declare function LoginGoogleRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): LoginGoogleRequest; export declare function LoginGoogleRequestToJSON(value?: LoginGoogleRequest | null): any;