generate api

This commit is contained in:
Sara
2023-12-12 11:40:56 +01:00
parent 37b11fdcb8
commit 44352ab5e3
17 changed files with 1767 additions and 0 deletions

View File

@@ -55,6 +55,12 @@ export interface UpdateTranscript {
* @memberof UpdateTranscript
*/
shareMode?: any | null;
/**
*
* @type {any}
* @memberof UpdateTranscript
*/
participants?: any | null;
}
/**
@@ -88,6 +94,9 @@ export function UpdateTranscriptFromJSONTyped(
? undefined
: json["long_summary"],
shareMode: !exists(json, "share_mode") ? undefined : json["share_mode"],
participants: !exists(json, "participants")
? undefined
: json["participants"],
};
}
@@ -105,5 +114,6 @@ export function UpdateTranscriptToJSON(value?: UpdateTranscript | null): any {
short_summary: value.shortSummary,
long_summary: value.longSummary,
share_mode: value.shareMode,
participants: value.participants,
};
}