Updated API

This commit is contained in:
Koper
2023-08-24 14:02:09 +07:00
parent ae458e87df
commit 0c27be4a48
3 changed files with 49 additions and 0 deletions

View File

@@ -31,6 +31,12 @@ export interface UpdateTranscript {
* @memberof UpdateTranscript
*/
locked?: any | null;
/**
*
* @type {any}
* @memberof UpdateTranscript
*/
summary?: any | null;
}
/**
@@ -56,6 +62,7 @@ export function UpdateTranscriptFromJSONTyped(
return {
name: !exists(json, "name") ? undefined : json["name"],
locked: !exists(json, "locked") ? undefined : json["locked"],
summary: !exists(json, "summary") ? undefined : json["summary"],
};
}
@@ -69,5 +76,6 @@ export function UpdateTranscriptToJSON(value?: UpdateTranscript | null): any {
return {
name: value.name,
locked: value.locked,
summary: value.summary,
};
}