/** * 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. */ /** * * @export * @interface DetectedGoogleForm */ export interface DetectedGoogleForm { /** * * @type {boolean} * @memberof DetectedGoogleForm */ accessible?: boolean; /** * * @type {string} * @memberof DetectedGoogleForm */ formId?: string; /** * * @type {string} * @memberof DetectedGoogleForm */ formUrl?: string; /** * * @type {string} * @memberof DetectedGoogleForm */ linkId?: string; /** * * @type {string} * @memberof DetectedGoogleForm */ linkName?: string; } /** * Check if a given object implements the DetectedGoogleForm interface. */ export declare function instanceOfDetectedGoogleForm(value: object): value is DetectedGoogleForm; export declare function DetectedGoogleFormFromJSON(json: any): DetectedGoogleForm; export declare function DetectedGoogleFormFromJSONTyped(json: any, ignoreDiscriminator: boolean): DetectedGoogleForm; export declare function DetectedGoogleFormToJSON(json: any): DetectedGoogleForm; export declare function DetectedGoogleFormToJSONTyped(value?: DetectedGoogleForm | null, ignoreDiscriminator?: boolean): any;