@@ -671,11 +671,13 @@ export class Element extends $tea.Model {
671671
672672export class ElementContent extends $tea.Model {
673673 content?: string;
674+ timeRange?: number[];
674675 type?: string;
675676 URL?: string;
676677 static names(): { [key: string]: string } {
677678 return {
678679 content: 'Content',
680+ timeRange: 'TimeRange',
679681 type: 'Type',
680682 URL: 'URL',
681683 };
@@ -684,6 +686,7 @@ export class ElementContent extends $tea.Model {
684686 static types(): { [key: string]: any } {
685687 return {
686688 content: 'string',
689+ timeRange: { 'type': 'array', 'itemType': 'number' },
687690 type: 'string',
688691 URL: 'string',
689692 };
@@ -946,6 +949,7 @@ export class File extends $tea.Model {
946949 fileCreateTime?: string;
947950 fileHash?: string;
948951 fileModifiedTime?: string;
952+ fileStatus?: string;
949953 filename?: string;
950954 formatLongName?: string;
951955 formatName?: string;
@@ -978,6 +982,8 @@ export class File extends $tea.Model {
978982 produceTime?: string;
979983 programCount?: number;
980984 projectName?: string;
985+ reason?: string;
986+ sceneElements?: SceneElement[];
981987 semanticTypes?: string[];
982988 serverSideDataEncryption?: string;
983989 serverSideEncryption?: string;
@@ -1028,6 +1034,7 @@ export class File extends $tea.Model {
10281034 fileCreateTime: 'FileCreateTime',
10291035 fileHash: 'FileHash',
10301036 fileModifiedTime: 'FileModifiedTime',
1037+ fileStatus: 'FileStatus',
10311038 filename: 'Filename',
10321039 formatLongName: 'FormatLongName',
10331040 formatName: 'FormatName',
@@ -1060,6 +1067,8 @@ export class File extends $tea.Model {
10601067 produceTime: 'ProduceTime',
10611068 programCount: 'ProgramCount',
10621069 projectName: 'ProjectName',
1070+ reason: 'Reason',
1071+ sceneElements: 'SceneElements',
10631072 semanticTypes: 'SemanticTypes',
10641073 serverSideDataEncryption: 'ServerSideDataEncryption',
10651074 serverSideEncryption: 'ServerSideEncryption',
@@ -1113,6 +1122,7 @@ export class File extends $tea.Model {
11131122 fileCreateTime: 'string',
11141123 fileHash: 'string',
11151124 fileModifiedTime: 'string',
1125+ fileStatus: 'string',
11161126 filename: 'string',
11171127 formatLongName: 'string',
11181128 formatName: 'string',
@@ -1145,6 +1155,8 @@ export class File extends $tea.Model {
11451155 produceTime: 'string',
11461156 programCount: 'number',
11471157 projectName: 'string',
1158+ reason: 'string',
1159+ sceneElements: { 'type': 'array', 'itemType': SceneElement },
11481160 semanticTypes: { 'type': 'array', 'itemType': 'string' },
11491161 serverSideDataEncryption: 'string',
11501162 serverSideEncryption: 'string',
@@ -2039,6 +2051,28 @@ export class Runtime extends $tea.Model {
20392051 }
20402052}
20412053
2054+ export class SceneElement extends $tea.Model {
2055+ frameTimes?: number[];
2056+ timeRange?: number[];
2057+ static names(): { [key: string]: string } {
2058+ return {
2059+ frameTimes: 'FrameTimes',
2060+ timeRange: 'TimeRange',
2061+ };
2062+ }
2063+
2064+ static types(): { [key: string]: any } {
2065+ return {
2066+ frameTimes: { 'type': 'array', 'itemType': 'number' },
2067+ timeRange: { 'type': 'array', 'itemType': 'number' },
2068+ };
2069+ }
2070+
2071+ constructor(map?: { [key: string]: any }) {
2072+ super(map);
2073+ }
2074+ }
2075+
20422076export class Schedule extends $tea.Model {
20432077 gamma?: number;
20442078 LRScheduler?: string;
@@ -13680,6 +13714,7 @@ export class TargetAudioFilterAudio extends $tea.Model {
1368013714export class TargetAudioTranscodeAudio extends $tea.Model {
1368113715 bitrate?: number;
1368213716 bitrateOption?: string;
13717+ bitsPerSample?: number;
1368313718 channel?: number;
1368413719 codec?: string;
1368513720 quality?: number;
@@ -13689,6 +13724,7 @@ export class TargetAudioTranscodeAudio extends $tea.Model {
1368913724 return {
1369013725 bitrate: 'Bitrate',
1369113726 bitrateOption: 'BitrateOption',
13727+ bitsPerSample: 'BitsPerSample',
1369213728 channel: 'Channel',
1369313729 codec: 'Codec',
1369413730 quality: 'Quality',
@@ -13701,6 +13737,7 @@ export class TargetAudioTranscodeAudio extends $tea.Model {
1370113737 return {
1370213738 bitrate: 'number',
1370313739 bitrateOption: 'string',
13740+ bitsPerSample: 'number',
1370413741 channel: 'number',
1370513742 codec: 'string',
1370613743 quality: 'number',
0 commit comments