generate API

This commit is contained in:
Sara
2023-12-07 17:05:07 +01:00
parent 6f3d7df507
commit e15af5e1ef
13 changed files with 1285 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,
};
}