mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
20 lines
491 B
TypeScript
20 lines
491 B
TypeScript
import type { TranscriptParticipant } from "./TranscriptParticipant";
|
|
|
|
export type GetTranscript = {
|
|
id: string;
|
|
user_id: string | null;
|
|
name: string;
|
|
status: string;
|
|
locked: boolean;
|
|
duration: number;
|
|
title: string | null;
|
|
short_summary: string | null;
|
|
long_summary: string | null;
|
|
created_at: string;
|
|
share_mode?: string;
|
|
source_language: string | null;
|
|
target_language: string | null;
|
|
participants: Array<TranscriptParticipant> | null;
|
|
reviewed: boolean;
|
|
};
|