/** * 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 { DetectedGoogleForm } from './DetectedGoogleForm'; /** * * @export * @interface ListDetectedGoogleFormsResponse */ export interface ListDetectedGoogleFormsResponse { /** * * @type {Array} * @memberof ListDetectedGoogleFormsResponse */ forms?: Array; } /** * Check if a given object implements the ListDetectedGoogleFormsResponse interface. */ export declare function instanceOfListDetectedGoogleFormsResponse(value: object): value is ListDetectedGoogleFormsResponse; export declare function ListDetectedGoogleFormsResponseFromJSON(json: any): ListDetectedGoogleFormsResponse; export declare function ListDetectedGoogleFormsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListDetectedGoogleFormsResponse; export declare function ListDetectedGoogleFormsResponseToJSON(json: any): ListDetectedGoogleFormsResponse; export declare function ListDetectedGoogleFormsResponseToJSONTyped(value?: ListDetectedGoogleFormsResponse | null, ignoreDiscriminator?: boolean): any;