Skip to content

Commit 5fb566c

Browse files
committed
Update RecognizeVideoCastCrewList.
1 parent 0e01979 commit 5fb566c

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

videorecog-20200320/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@alicloud/videorecog20200320",
3-
"version": "3.0.2",
3+
"version": "3.0.3",
44
"description": "",
55
"main": "dist/client.js",
66
"scripts": {

videorecog-20200320/src/client.ts

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,17 +53,20 @@ export class DetectVideoShotAdvanceRequest extends $tea.Model {
5353

5454
export class DetectVideoShotResponseBody extends $tea.Model {
5555
data?: DetectVideoShotResponseBodyData;
56+
message?: string;
5657
requestId?: string;
5758
static names(): { [key: string]: string } {
5859
return {
5960
data: 'Data',
61+
message: 'Message',
6062
requestId: 'RequestId',
6163
};
6264
}
6365

6466
static types(): { [key: string]: any } {
6567
return {
6668
data: DetectVideoShotResponseBodyData,
69+
message: 'string',
6770
requestId: 'string',
6871
};
6972
}
@@ -144,17 +147,20 @@ export class GenerateVideoCoverAdvanceRequest extends $tea.Model {
144147

145148
export class GenerateVideoCoverResponseBody extends $tea.Model {
146149
data?: GenerateVideoCoverResponseBodyData;
150+
message?: string;
147151
requestId?: string;
148152
static names(): { [key: string]: string } {
149153
return {
150154
data: 'Data',
155+
message: 'Message',
151156
requestId: 'RequestId',
152157
};
153158
}
154159

155160
static types(): { [key: string]: any } {
156161
return {
157162
data: GenerateVideoCoverResponseBodyData,
163+
message: 'string',
158164
requestId: 'string',
159165
};
160166
}
@@ -332,17 +338,20 @@ export class RecognizeVideoCastCrewListShrinkRequest extends $tea.Model {
332338

333339
export class RecognizeVideoCastCrewListResponseBody extends $tea.Model {
334340
data?: RecognizeVideoCastCrewListResponseBodyData;
341+
message?: string;
335342
requestId?: string;
336343
static names(): { [key: string]: string } {
337344
return {
338345
data: 'Data',
346+
message: 'Message',
339347
requestId: 'RequestId',
340348
};
341349
}
342350

343351
static types(): { [key: string]: any } {
344352
return {
345353
data: RecognizeVideoCastCrewListResponseBodyData,
354+
message: 'string',
346355
requestId: 'string',
347356
};
348357
}
@@ -417,17 +426,20 @@ export class SplitVideoPartsAdvanceRequest extends $tea.Model {
417426

418427
export class SplitVideoPartsResponseBody extends $tea.Model {
419428
data?: SplitVideoPartsResponseBodyData;
429+
message?: string;
420430
requestId?: string;
421431
static names(): { [key: string]: string } {
422432
return {
423433
data: 'Data',
434+
message: 'Message',
424435
requestId: 'RequestId',
425436
};
426437
}
427438

428439
static types(): { [key: string]: any } {
429440
return {
430441
data: SplitVideoPartsResponseBodyData,
442+
message: 'string',
431443
requestId: 'string',
432444
};
433445
}
@@ -502,17 +514,20 @@ export class UnderstandVideoContentAdvanceRequest extends $tea.Model {
502514

503515
export class UnderstandVideoContentResponseBody extends $tea.Model {
504516
data?: UnderstandVideoContentResponseBodyData;
517+
message?: string;
505518
requestId?: string;
506519
static names(): { [key: string]: string } {
507520
return {
508521
data: 'Data',
522+
message: 'Message',
509523
requestId: 'RequestId',
510524
};
511525
}
512526

513527
static types(): { [key: string]: any } {
514528
return {
515529
data: UnderstandVideoContentResponseBodyData,
530+
message: 'string',
516531
requestId: 'string',
517532
};
518533
}
@@ -906,12 +921,16 @@ export class RecognizeVideoCastCrewListResponseBodyDataVideoOcrResults extends $
906921
export class RecognizeVideoCastCrewListResponseBodyData extends $tea.Model {
907922
castResults?: RecognizeVideoCastCrewListResponseBodyDataCastResults[];
908923
ocrResults?: RecognizeVideoCastCrewListResponseBodyDataOcrResults[];
924+
ocrResultsUrl?: string;
925+
ocrVideoResultsUrl?: string;
909926
subtitlesResults?: RecognizeVideoCastCrewListResponseBodyDataSubtitlesResults[];
910927
videoOcrResults?: RecognizeVideoCastCrewListResponseBodyDataVideoOcrResults[];
911928
static names(): { [key: string]: string } {
912929
return {
913930
castResults: 'CastResults',
914931
ocrResults: 'OcrResults',
932+
ocrResultsUrl: 'OcrResultsUrl',
933+
ocrVideoResultsUrl: 'OcrVideoResultsUrl',
915934
subtitlesResults: 'SubtitlesResults',
916935
videoOcrResults: 'VideoOcrResults',
917936
};
@@ -921,6 +940,8 @@ export class RecognizeVideoCastCrewListResponseBodyData extends $tea.Model {
921940
return {
922941
castResults: { 'type': 'array', 'itemType': RecognizeVideoCastCrewListResponseBodyDataCastResults },
923942
ocrResults: { 'type': 'array', 'itemType': RecognizeVideoCastCrewListResponseBodyDataOcrResults },
943+
ocrResultsUrl: 'string',
944+
ocrVideoResultsUrl: 'string',
924945
subtitlesResults: { 'type': 'array', 'itemType': RecognizeVideoCastCrewListResponseBodyDataSubtitlesResults },
925946
videoOcrResults: { 'type': 'array', 'itemType': RecognizeVideoCastCrewListResponseBodyDataVideoOcrResults },
926947
};

0 commit comments

Comments
 (0)