/** * 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'; /** * GoogleFormsIntegration represents a connected Google account. * Forms are auto-detected from workflow steps — no manual configuration needed. * @export * @interface GoogleFormsIntegration */ export interface GoogleFormsIntegration { /** * * @type {Date} * @memberof GoogleFormsIntegration */ readonly createdAt?: Date; /** * * @type {string} * @memberof GoogleFormsIntegration */ createdBy?: string; /** * * @type {string} * @memberof GoogleFormsIntegration */ googleEmail?: string; /** * * @type {string} * @memberof GoogleFormsIntegration */ id?: string; /** * * @type {Date} * @memberof GoogleFormsIntegration */ readonly lastSyncedAt?: Date; /** * * @type {string} * @memberof GoogleFormsIntegration */ readonly responsesSynced?: string; /** * * @type {GoogleFormsIntegrationStatus} * @memberof GoogleFormsIntegration */ status?: GoogleFormsIntegrationStatus; /** * * @type {Date} * @memberof GoogleFormsIntegration */ readonly updatedAt?: Date; /** * * @type {string} * @memberof GoogleFormsIntegration */ readonly visitorsEnriched?: string; /** * * @type {string} * @memberof GoogleFormsIntegration */ workspaceId?: string; } /** * Check if a given object implements the GoogleFormsIntegration interface. */ export declare function instanceOfGoogleFormsIntegration(value: object): value is GoogleFormsIntegration; export declare function GoogleFormsIntegrationFromJSON(json: any): GoogleFormsIntegration; export declare function GoogleFormsIntegrationFromJSONTyped(json: any, ignoreDiscriminator: boolean): GoogleFormsIntegration; export declare function GoogleFormsIntegrationToJSON(json: any): GoogleFormsIntegration; export declare function GoogleFormsIntegrationToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any;