mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-21 20:59:05 +00:00
16 lines
524 B
TypeScript
16 lines
524 B
TypeScript
/* generated using openapi-typescript-codegen -- do not edit */
|
|
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
import type { TranscriptParticipant } from "./TranscriptParticipant";
|
|
export type UpdateTranscript = {
|
|
name?: string | null;
|
|
locked?: boolean | null;
|
|
title?: string | null;
|
|
short_summary?: string | null;
|
|
long_summary?: string | null;
|
|
share_mode?: "public" | "semi-private" | "private" | null;
|
|
participants?: Array<TranscriptParticipant> | null;
|
|
reviewed?: boolean | null;
|
|
};
|