/** * 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 UpdateGoogleFormsIntegrationResponse */ export interface UpdateGoogleFormsIntegrationResponse { /** * * @type {GoogleFormsIntegration} * @memberof UpdateGoogleFormsIntegrationResponse */ integration?: GoogleFormsIntegration; } /** * Check if a given object implements the UpdateGoogleFormsIntegrationResponse interface. */ export declare function instanceOfUpdateGoogleFormsIntegrationResponse(value: object): value is UpdateGoogleFormsIntegrationResponse; export declare function UpdateGoogleFormsIntegrationResponseFromJSON(json: any): UpdateGoogleFormsIntegrationResponse; export declare function UpdateGoogleFormsIntegrationResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateGoogleFormsIntegrationResponse; export declare function UpdateGoogleFormsIntegrationResponseToJSON(json: any): UpdateGoogleFormsIntegrationResponse; export declare function UpdateGoogleFormsIntegrationResponseToJSONTyped(value?: UpdateGoogleFormsIntegrationResponse | null, ignoreDiscriminator?: boolean): any;