import { JobStatus } from '../JobStatus'; import { JobType } from '../JobType'; /** * Topic extraction job details model. * See https://docs.rev.ai/api/topic-extraction/reference/#operation/GetTopicExtractionJobById for more details. */ export interface TopicExtractionJob { id: string; status: JobStatus; type: JobType; created_on: string; completed_on?: string; metadata?: string; callback_url?: string; delete_after_seconds?: number; failure?: string; failure_detail?: string; word_count?: number; language?: string; }