/** * 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 SyncGoogleFormsResponse */ export interface SyncGoogleFormsResponse { /** * * @type {string} * @memberof SyncGoogleFormsResponse */ responsesSynced?: string; /** * * @type {string} * @memberof SyncGoogleFormsResponse */ visitorsEnriched?: string; } /** * Check if a given object implements the SyncGoogleFormsResponse interface. */ export declare function instanceOfSyncGoogleFormsResponse(value: object): value is SyncGoogleFormsResponse; export declare function SyncGoogleFormsResponseFromJSON(json: any): SyncGoogleFormsResponse; export declare function SyncGoogleFormsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SyncGoogleFormsResponse; export declare function SyncGoogleFormsResponseToJSON(json: any): SyncGoogleFormsResponse; export declare function SyncGoogleFormsResponseToJSONTyped(value?: SyncGoogleFormsResponse | null, ignoreDiscriminator?: boolean): any;