import type { forms_FormResponseFields } from './forms_FormResponseFields'; import type { users_Owner } from './users_Owner'; export type forms_FormResponse = { /** * ID of the client the response is assigned to. */ clientId?: string; /** * ID of the company the client belongs to for this response. */ companyId?: string; createdAt?: string; creatorId?: string; data?: string; fields: forms_FormResponseFields; filteredListIndexPkey?: string; /** * ID of the form this response belongs to. */ formId?: string; id?: string; identityId?: string; object?: string; owner?: users_Owner; previousAttributes?: Record; ref?: string; updatedAt?: string; };