import type { contracts_ContractField } from './contracts_ContractField'; import type { users_Owner } from './users_Owner'; export type contracts_ContractTemplate = { createdAt?: string; creatorId?: string; data?: string; fields: Array; fileKey: string; id?: string; identityId?: string; /** * LatestSubmissionDate is the timestamp of the most recent signed contract from this template. */ latestSubmissionDate?: string; /** * Name is the human-readable name of the template. */ name: string; object?: string; owner?: users_Owner; pageKeys?: Array; portalId?: string; previousAttributes?: Record; ref?: string; /** * SubmissionRequests is the number of contracts that have been sent from this template. */ requestsCount?: number; /** * Submissions is the number of contracts created from this template that have been signed. */ submissionsCount?: number; updatedAt?: string; };