/** * 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 { GoogleFormsIntegrationStatus } from './GoogleFormsIntegrationStatus'; /** * * @export * @interface UpdateGoogleFormsIntegrationRequest */ export interface UpdateGoogleFormsIntegrationRequest { /** * * @type {GoogleFormsIntegrationStatus} * @memberof UpdateGoogleFormsIntegrationRequest */ status?: GoogleFormsIntegrationStatus; } /** * Check if a given object implements the UpdateGoogleFormsIntegrationRequest interface. */ export declare function instanceOfUpdateGoogleFormsIntegrationRequest(value: object): value is UpdateGoogleFormsIntegrationRequest; export declare function UpdateGoogleFormsIntegrationRequestFromJSON(json: any): UpdateGoogleFormsIntegrationRequest; export declare function UpdateGoogleFormsIntegrationRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateGoogleFormsIntegrationRequest; export declare function UpdateGoogleFormsIntegrationRequestToJSON(json: any): UpdateGoogleFormsIntegrationRequest; export declare function UpdateGoogleFormsIntegrationRequestToJSONTyped(value?: UpdateGoogleFormsIntegrationRequest | null, ignoreDiscriminator?: boolean): any;