/** * 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 GetGoogleFormsIntegrationResponse */ export interface GetGoogleFormsIntegrationResponse { /** * * @type {GoogleFormsIntegration} * @memberof GetGoogleFormsIntegrationResponse */ integration?: GoogleFormsIntegration; } /** * Check if a given object implements the GetGoogleFormsIntegrationResponse interface. */ export declare function instanceOfGetGoogleFormsIntegrationResponse(value: object): value is GetGoogleFormsIntegrationResponse; export declare function GetGoogleFormsIntegrationResponseFromJSON(json: any): GetGoogleFormsIntegrationResponse; export declare function GetGoogleFormsIntegrationResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetGoogleFormsIntegrationResponse; export declare function GetGoogleFormsIntegrationResponseToJSON(json: any): GetGoogleFormsIntegrationResponse; export declare function GetGoogleFormsIntegrationResponseToJSONTyped(value?: GetGoogleFormsIntegrationResponse | null, ignoreDiscriminator?: boolean): any;