/** * 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 GoogleIdTokenObject */ export interface GoogleIdTokenObject { /** * 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 GoogleIdTokenObject */ idToken: string; } /** * Check if a given object implements the GoogleIdTokenObject interface. */ export declare function instanceOfGoogleIdTokenObject(value: object): boolean; export declare function GoogleIdTokenObjectFromJSON(json: any): GoogleIdTokenObject; export declare function GoogleIdTokenObjectFromJSONTyped(json: any, ignoreDiscriminator: boolean): GoogleIdTokenObject; export declare function GoogleIdTokenObjectToJSON(value?: GoogleIdTokenObject | null): any;