/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * 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 { GoogleFormsIntegration } from './GoogleFormsIntegration'; /** * * @export * @interface CompleteGoogleFormsOAuthResponse */ export interface CompleteGoogleFormsOAuthResponse { /** * * @type {GoogleFormsIntegration} * @memberof CompleteGoogleFormsOAuthResponse */ integration?: GoogleFormsIntegration; } /** * Check if a given object implements the CompleteGoogleFormsOAuthResponse interface. */ export declare function instanceOfCompleteGoogleFormsOAuthResponse(value: object): value is CompleteGoogleFormsOAuthResponse; export declare function CompleteGoogleFormsOAuthResponseFromJSON(json: any): CompleteGoogleFormsOAuthResponse; export declare function CompleteGoogleFormsOAuthResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CompleteGoogleFormsOAuthResponse; export declare function CompleteGoogleFormsOAuthResponseToJSON(json: any): CompleteGoogleFormsOAuthResponse; export declare function CompleteGoogleFormsOAuthResponseToJSONTyped(value?: CompleteGoogleFormsOAuthResponse | null, ignoreDiscriminator?: boolean): any;