tencentcloud-sdk-nodejs-mps 4.1.16 → 4.1.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-mps",
3
- "version": "4.1.16",
3
+ "version": "4.1.17",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -715,18 +715,18 @@ export interface AiReviewProhibitedOcrTaskOutput {
715
715
  /**
716
716
  * Ocr 文字涉违禁评分,分值为0到100。
717
717
  */
718
- Confidence: number;
718
+ Confidence?: number;
719
719
  /**
720
720
  * Ocr 文字涉违禁结果建议,取值范围:
721
721
  <li>pass。</li>
722
722
  <li>review。</li>
723
723
  <li>block。</li>
724
724
  */
725
- Suggestion: string;
725
+ Suggestion?: string;
726
726
  /**
727
727
  * Ocr 文字有涉违禁嫌疑的视频片段列表。
728
728
  */
729
- SegmentSet: Array<MediaContentReviewOcrTextSegmentItem>;
729
+ SegmentSet?: Array<MediaContentReviewOcrTextSegmentItem>;
730
730
  }
731
731
  /**
732
732
  * DeleteSchedule返回参数结构体
@@ -1372,10 +1372,10 @@ export interface AudioTrackChannelInfo {
1372
1372
  ChannelsRemix?: number;
1373
1373
  /**
1374
1374
  * 合并音轨输入类型,可选值:
1375
- trask:表示使用音轨id;
1376
- trask_channel: 表示使用音轨id和声道id;
1377
- 默认:trask
1378
- 注意:如果原视频是多声道,建议使用trask_channel
1375
+ track:表示使用音轨id;
1376
+ track_channel: 表示使用音轨id和声道id;
1377
+ 默认:track
1378
+ 注意:如果原视频是多声道,建议使用track_channel
1379
1379
  注意:此字段可能返回 null,表示取不到有效值。
1380
1380
  */
1381
1381
  SelectType?: string;
@@ -2499,16 +2499,25 @@ export interface AudioTemplateInfo {
2499
2499
  <li>mp2。</li>
2500
2500
  当外层参数 Container 为 hls 时,可选值为:
2501
2501
  <li>aac;</li>
2502
- <li>mp3。</li>
2502
+ <li>mp3;</li>
2503
+ <li>eac3:自适应转码音轨合并时使用。</li>
2503
2504
  */
2504
2505
  Codec: string;
2505
2506
  /**
2506
2507
  * 音频流的码率,取值范围:0 和 [26, 256],单位:kbps。
2507
2508
  当取值为 0,表示音频码率和原始音频保持一致。
2509
+ 注意:如果使用自适应转码音轨合并TrackChannelInfo参数,取值范围:
2510
+ 1)、不能填0;
2511
+ 2)、Codec为:aac时,取值范围:[26, 256];
2512
+ 3)、Codec为:ac3时,取值范围:[26, 640];
2513
+ 4)、Codec为:eac3时,取值范围:[26, 6144],备注:当SampleRate为44100HZ,最大值为:5644,当SampleRate为48000HZ,最大值为:6144,
2514
+
2515
+
2508
2516
  */
2509
2517
  Bitrate: number;
2510
2518
  /**
2511
2519
  * 音频流的采样率,不同编码标准支持的采样率选项不同。详细参考[音频采样率支持范围文档]https://cloud.tencent.com/document/product/862/77166#f3b039f1-d817-4a96-b4e4-90132d31cd53
2520
+ 单位:Hz
2512
2521
  注意:请确保源音频流的采样率在上述选项范围内,否则可能导致转码失败!
2513
2522
  */
2514
2523
  SampleRate: number;
@@ -2616,7 +2625,7 @@ export interface AiReviewPornAsrTaskInput {
2616
2625
  /**
2617
2626
  * 鉴黄模板 ID。
2618
2627
  */
2619
- Definition: number;
2628
+ Definition?: number;
2620
2629
  }
2621
2630
  /**
2622
2631
  * 人脸识别结果。
@@ -3646,11 +3655,11 @@ export interface AiSampleFaceInfo {
3646
3655
  /**
3647
3656
  * 人脸图片 ID。
3648
3657
  */
3649
- FaceId: string;
3658
+ FaceId?: string;
3650
3659
  /**
3651
3660
  * 人脸图片地址。
3652
3661
  */
3653
- Url: string;
3662
+ Url?: string;
3654
3663
  }
3655
3664
  /**
3656
3665
  * 创建的输入RTSP拉流的配置信息。
@@ -4590,7 +4599,7 @@ export interface SvgWatermarkInputForUpdate {
4590
4599
  <li>当字符串以 S% 结尾,表示水印 Height 为视频短边的百分比大小,如 10S% 表示 Height 为视频短边的 10%;</li>
4591
4600
  <li>当字符串以 L% 结尾,表示水印 Height 为视频长边的百分比大小,如 10L% 表示 Height 为视频长边的 10%;</li>
4592
4601
  <li>当字符串以 % 结尾时,含义同 H%。
4593
- 默认值为 0px
4602
+ 默认值为 0px。</li>
4594
4603
  */
4595
4604
  Height?: string;
4596
4605
  }
@@ -4756,15 +4765,15 @@ export interface AiRecognitionTaskOcrFullTextSegmentItem {
4756
4765
  /**
4757
4766
  * 识别片段起始的偏移时间,单位:秒。
4758
4767
  */
4759
- StartTimeOffset: number;
4768
+ StartTimeOffset?: number;
4760
4769
  /**
4761
4770
  * 识别片段终止的偏移时间,单位:秒。
4762
4771
  */
4763
- EndTimeOffset: number;
4772
+ EndTimeOffset?: number;
4764
4773
  /**
4765
4774
  * 识别片段结果集。
4766
4775
  */
4767
- TextSet: Array<AiRecognitionTaskOcrFullTextSegmentTextItem>;
4776
+ TextSet?: Array<AiRecognitionTaskOcrFullTextSegmentTextItem>;
4768
4777
  }
4769
4778
  /**
4770
4779
  * 编辑视频的结果文件输出配置。
@@ -4865,18 +4874,18 @@ export interface AiReviewPornAsrTaskOutput {
4865
4874
  /**
4866
4875
  * Asr 文字涉黄评分,分值为0到100。
4867
4876
  */
4868
- Confidence: number;
4877
+ Confidence?: number;
4869
4878
  /**
4870
4879
  * Asr 文字涉黄结果建议,取值范围:
4871
4880
  <li>pass。</li>
4872
4881
  <li>review。</li>
4873
4882
  <li>block。</li>
4874
4883
  */
4875
- Suggestion: string;
4884
+ Suggestion?: string;
4876
4885
  /**
4877
4886
  * Asr 文字有涉黄嫌疑的视频片段列表。
4878
4887
  */
4879
- SegmentSet: Array<MediaContentReviewAsrTextSegmentItem>;
4888
+ SegmentSet?: Array<MediaContentReviewAsrTextSegmentItem>;
4880
4889
  }
4881
4890
  /**
4882
4891
  * 视频编辑/合成任务 转场元素信息。
@@ -5145,39 +5154,39 @@ export interface MediaContentReviewOcrTextSegmentItem {
5145
5154
  /**
5146
5155
  * 嫌疑片段起始的偏移时间,单位:秒。
5147
5156
  */
5148
- StartTimeOffset: number;
5157
+ StartTimeOffset?: number;
5149
5158
  /**
5150
5159
  * 嫌疑片段结束的偏移时间,单位:秒。
5151
5160
  */
5152
- EndTimeOffset: number;
5161
+ EndTimeOffset?: number;
5153
5162
  /**
5154
5163
  * 嫌疑片段置信度。
5155
5164
  */
5156
- Confidence: number;
5165
+ Confidence?: number;
5157
5166
  /**
5158
5167
  * 嫌疑片段审核结果建议,取值范围:
5159
5168
  <li>pass。</li>
5160
5169
  <li>review。</li>
5161
5170
  <li>block。</li>
5162
5171
  */
5163
- Suggestion: string;
5172
+ Suggestion?: string;
5164
5173
  /**
5165
5174
  * 嫌疑关键词列表。
5166
5175
  */
5167
- KeywordSet: Array<string>;
5176
+ KeywordSet?: Array<string>;
5168
5177
  /**
5169
5178
  * 嫌疑文字出现的区域坐标 (像素级),[x1, y1, x2, y2],即左上角坐标、右下角坐标。
5170
5179
  */
5171
- AreaCoordSet: Array<number | bigint>;
5180
+ AreaCoordSet?: Array<number | bigint>;
5172
5181
  /**
5173
5182
  * 嫌疑图片 URL (图片不会永久存储,到达
5174
5183
  PicUrlExpireTime 时间点后图片将被删除)。
5175
5184
  */
5176
- Url: string;
5185
+ Url?: string;
5177
5186
  /**
5178
5187
  * 嫌疑图片 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
5179
5188
  */
5180
- PicUrlExpireTime: string;
5189
+ PicUrlExpireTime?: string;
5181
5190
  }
5182
5191
  /**
5183
5192
  * StopStreamLinkFlow请求参数结构体
@@ -5265,9 +5274,9 @@ export interface TrackInfo {
5265
5274
  TrackNum?: string;
5266
5275
  /**
5267
5276
  * 声道音量大小,说明:
5268
- 当:AudioChannel的值为1时,此值长度为1;
5269
- 当:AudioChannel的值为2时,此值长度为2;
5270
- 当:AudioChannel的值为6时,此值长度大于2。
5277
+ 当:AudioChannel的值为1时,此数组长度为1,例如:[6]
5278
+ 当:AudioChannel的值为2时,此数组长度为2,例如:[0,6]
5279
+ 当:AudioChannel的值为6时,此数组长度大于2小于16,例如:[-60,0,0,6]
5271
5280
  此值数组值取值范围:[-60, 6],其中-60代表静音、0代表保持原音量,6表示原音量增加一倍,默认值为-60。
5272
5281
  注意:支持3位小数。
5273
5282
 
@@ -6222,7 +6231,7 @@ export interface AiReviewPornOcrTaskInput {
6222
6231
  /**
6223
6232
  * 鉴黄模板 ID。
6224
6233
  */
6225
- Definition: number;
6234
+ Definition?: number;
6226
6235
  }
6227
6236
  /**
6228
6237
  * 直播编排任务信息
@@ -6337,47 +6346,47 @@ export interface MediaAnimatedGraphicsItem {
6337
6346
  /**
6338
6347
  * 转动图文件的存储位置。
6339
6348
  */
6340
- Storage: TaskOutputStorage;
6349
+ Storage?: TaskOutputStorage;
6341
6350
  /**
6342
6351
  * 转动图的文件路径。
6343
6352
  */
6344
- Path: string;
6353
+ Path?: string;
6345
6354
  /**
6346
6355
  * 转动图模板 ID,参见[转动图参数模板](https://cloud.tencent.com/document/product/862/37042#.E9.A2.84.E7.BD.AE.E8.BD.AC.E5.8A.A8.E5.9B.BE.E6.A8.A1.E6.9D.BF)。
6347
6356
  */
6348
- Definition: number;
6357
+ Definition?: number;
6349
6358
  /**
6350
6359
  * 动图格式,如 gif。
6351
6360
  */
6352
- Container: string;
6361
+ Container?: string;
6353
6362
  /**
6354
6363
  * 动图的高度,单位:px。
6355
6364
  */
6356
- Height: number;
6365
+ Height?: number;
6357
6366
  /**
6358
6367
  * 动图的宽度,单位:px。
6359
6368
  */
6360
- Width: number;
6369
+ Width?: number;
6361
6370
  /**
6362
6371
  * 动图码率,单位:bps。
6363
6372
  */
6364
- Bitrate: number;
6373
+ Bitrate?: number;
6365
6374
  /**
6366
6375
  * 动图大小,单位:字节。
6367
6376
  */
6368
- Size: number;
6377
+ Size?: number;
6369
6378
  /**
6370
6379
  * 动图的md5值。
6371
6380
  */
6372
- Md5: string;
6381
+ Md5?: string;
6373
6382
  /**
6374
6383
  * 动图在视频中的起始时间偏移,单位:秒。
6375
6384
  */
6376
- StartTimeOffset: number;
6385
+ StartTimeOffset?: number;
6377
6386
  /**
6378
6387
  * 动图在视频中的结束时间偏移,单位:秒。
6379
6388
  */
6380
- EndTimeOffset: number;
6389
+ EndTimeOffset?: number;
6381
6390
  }
6382
6391
  /**
6383
6392
  * DescribeQualityControlTemplates请求参数结构体
@@ -6997,7 +7006,7 @@ export interface AiRecognitionTaskTransTextResultInput {
6997
7006
  /**
6998
7007
  * 翻译模板 ID。
6999
7008
  */
7000
- Definition: number;
7009
+ Definition?: number;
7001
7010
  }
7002
7011
  /**
7003
7012
  * DescribeSchedules返回参数结构体
@@ -7395,27 +7404,27 @@ export interface ImageWatermarkTemplate {
7395
7404
  /**
7396
7405
  * 水印图片地址。
7397
7406
  */
7398
- ImageUrl: string;
7407
+ ImageUrl?: string;
7399
7408
  /**
7400
7409
  * 水印的宽度。支持 %、px 两种格式:
7401
7410
  <li>当字符串以 % 结尾,表示水印 Width 为视频宽度的百分比大小,如 10% 表示 Width 为视频宽度的 10%;</li>
7402
7411
  <li>当字符串以 px 结尾,表示水印 Width 单位为像素,如 100px 表示 Width 为 100 像素。</li>
7403
7412
  */
7404
- Width: string;
7413
+ Width?: string;
7405
7414
  /**
7406
7415
  * 水印的高度。支持 %、px 两种格式:
7407
7416
  <li>当字符串以 % 结尾,表示水印 Height 为视频高度的百分比大小,如 10% 表示 Height 为视频高度的 10%;</li>
7408
7417
  <li>当字符串以 px 结尾,表示水印 Height 单位为像素,如 100px 表示 Height 为 100 像素;</li>
7409
7418
  0px:表示 Height 按照 Width 对视频宽度的比例缩放。
7410
7419
  */
7411
- Height: string;
7420
+ Height?: string;
7412
7421
  /**
7413
7422
  * 水印重复类型。使用场景:水印为动态图像。取值范围:
7414
7423
  <li>once:动态水印播放完后,不再出现;</li>
7415
7424
  <li>repeat_last_frame:水印播放完后,停留在最后一帧;</li>
7416
7425
  <li>repeat:水印循环播放,直到视频结束。</li>
7417
7426
  */
7418
- RepeatType: string;
7427
+ RepeatType?: string;
7419
7428
  }
7420
7429
  /**
7421
7430
  * ModifyQualityControlTemplate返回参数结构体
@@ -7514,35 +7523,35 @@ export interface AiSamplePerson {
7514
7523
  /**
7515
7524
  * 人物 ID。
7516
7525
  */
7517
- PersonId: string;
7526
+ PersonId?: string;
7518
7527
  /**
7519
7528
  * 人物名称。
7520
7529
  */
7521
- Name: string;
7530
+ Name?: string;
7522
7531
  /**
7523
7532
  * 人物描述。
7524
7533
  */
7525
- Description: string;
7534
+ Description?: string;
7526
7535
  /**
7527
7536
  * 人脸信息。
7528
7537
  */
7529
- FaceInfoSet: Array<AiSampleFaceInfo>;
7538
+ FaceInfoSet?: Array<AiSampleFaceInfo>;
7530
7539
  /**
7531
7540
  * 人物标签。
7532
7541
  */
7533
- TagSet: Array<string>;
7542
+ TagSet?: Array<string>;
7534
7543
  /**
7535
7544
  * 应用场景。
7536
7545
  */
7537
- UsageSet: Array<string>;
7546
+ UsageSet?: Array<string>;
7538
7547
  /**
7539
7548
  * 创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
7540
7549
  */
7541
- CreateTime: string;
7550
+ CreateTime?: string;
7542
7551
  /**
7543
7552
  * 最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
7544
7553
  */
7545
- UpdateTime: string;
7554
+ UpdateTime?: string;
7546
7555
  }
7547
7556
  /**
7548
7557
  * 流的统计数据。
@@ -9245,18 +9254,18 @@ export interface AiReviewTerrorismOcrTaskOutput {
9245
9254
  /**
9246
9255
  * Ocr 文字涉敏评分,分值为0到100。
9247
9256
  */
9248
- Confidence: number;
9257
+ Confidence?: number;
9249
9258
  /**
9250
9259
  * Ocr 文字涉敏结果建议,取值范围:
9251
9260
  <li>pass。</li>
9252
9261
  <li>review。</li>
9253
9262
  <li>block。</li>
9254
9263
  */
9255
- Suggestion: string;
9264
+ Suggestion?: string;
9256
9265
  /**
9257
9266
  * Ocr 文字有涉敏嫌疑的视频片段列表。
9258
9267
  */
9259
- SegmentSet: Array<MediaContentReviewOcrTextSegmentItem>;
9268
+ SegmentSet?: Array<MediaContentReviewOcrTextSegmentItem>;
9260
9269
  }
9261
9270
  /**
9262
9271
  * DescribeAsrHotwordsList返回参数结构体
@@ -9444,11 +9453,11 @@ export interface AiRecognitionTaskOcrWordsResultItem {
9444
9453
  /**
9445
9454
  * 文本关键词。
9446
9455
  */
9447
- Word: string;
9456
+ Word?: string;
9448
9457
  /**
9449
9458
  * 文本关键出现的片段列表。
9450
9459
  */
9451
- SegmentSet: Array<AiRecognitionTaskOcrWordsSegmentItem>;
9460
+ SegmentSet?: Array<AiRecognitionTaskOcrWordsSegmentItem>;
9452
9461
  }
9453
9462
  /**
9454
9463
  * ProcessImage请求参数结构体
@@ -9742,26 +9751,26 @@ export interface MediaContentReviewAsrTextSegmentItem {
9742
9751
  /**
9743
9752
  * 嫌疑片段起始的偏移时间,单位:秒。
9744
9753
  */
9745
- StartTimeOffset: number;
9754
+ StartTimeOffset?: number;
9746
9755
  /**
9747
9756
  * 嫌疑片段结束的偏移时间,单位:秒。
9748
9757
  */
9749
- EndTimeOffset: number;
9758
+ EndTimeOffset?: number;
9750
9759
  /**
9751
9760
  * 嫌疑片段置信度。
9752
9761
  */
9753
- Confidence: number;
9762
+ Confidence?: number;
9754
9763
  /**
9755
9764
  * 嫌疑片段审核结果建议,取值范围:
9756
9765
  <li>pass。</li>
9757
9766
  <li>review。</li>
9758
9767
  <li>block。</li>
9759
9768
  */
9760
- Suggestion: string;
9769
+ Suggestion?: string;
9761
9770
  /**
9762
9771
  * 嫌疑关键词列表。
9763
9772
  */
9764
- KeywordSet: Array<string>;
9773
+ KeywordSet?: Array<string>;
9765
9774
  }
9766
9775
  /**
9767
9776
  * 内容审核涉敏嫌疑片段
@@ -10116,15 +10125,15 @@ export interface AiRecognitionTaskOcrFullTextSegmentTextItem {
10116
10125
  /**
10117
10126
  * 识别片段置信度。取值:0~100。
10118
10127
  */
10119
- Confidence: number;
10128
+ Confidence?: number;
10120
10129
  /**
10121
10130
  * 识别结果的区域坐标。数组包含 4 个元素 [x1,y1,x2,y2],依次表示区域左上点、右下点的横纵坐标。
10122
10131
  */
10123
- AreaCoordSet: Array<number | bigint>;
10132
+ AreaCoordSet?: Array<number | bigint>;
10124
10133
  /**
10125
10134
  * 识别文本。
10126
10135
  */
10127
- Text: string;
10136
+ Text?: string;
10128
10137
  }
10129
10138
  /**
10130
10139
  * DeleteAsrHotwords返回参数结构体
@@ -10270,18 +10279,18 @@ export interface AiReviewPornOcrTaskOutput {
10270
10279
  /**
10271
10280
  * Ocr 文字涉黄评分,分值为0到100。
10272
10281
  */
10273
- Confidence: number;
10282
+ Confidence?: number;
10274
10283
  /**
10275
10284
  * Ocr 文字涉黄结果建议,取值范围:
10276
10285
  <li>pass。</li>
10277
10286
  <li>review。</li>
10278
10287
  <li>block。</li>
10279
10288
  */
10280
- Suggestion: string;
10289
+ Suggestion?: string;
10281
10290
  /**
10282
10291
  * Ocr 文字有涉黄嫌疑的视频片段列表。
10283
10292
  */
10284
- SegmentSet: Array<MediaContentReviewOcrTextSegmentItem>;
10293
+ SegmentSet?: Array<MediaContentReviewOcrTextSegmentItem>;
10285
10294
  }
10286
10295
  /**
10287
10296
  * CreateAsrHotwords请求参数结构体
@@ -10787,7 +10796,7 @@ export interface AiReviewProhibitedAsrTaskInput {
10787
10796
  /**
10788
10797
  * 鉴违禁模板 ID。
10789
10798
  */
10790
- Definition: number;
10799
+ Definition?: number;
10791
10800
  }
10792
10801
  /**
10793
10802
  * DescribeMediaMetaData返回参数结构体
@@ -10937,18 +10946,18 @@ export interface AiReviewProhibitedAsrTaskOutput {
10937
10946
  /**
10938
10947
  * Asr 文字涉违禁评分,分值为0到100。
10939
10948
  */
10940
- Confidence: number;
10949
+ Confidence?: number;
10941
10950
  /**
10942
10951
  * Asr 文字涉违禁结果建议,取值范围:
10943
10952
  <li>pass。</li>
10944
10953
  <li>review。</li>
10945
10954
  <li>block。</li>
10946
10955
  */
10947
- Suggestion: string;
10956
+ Suggestion?: string;
10948
10957
  /**
10949
10958
  * Asr 文字有涉违禁嫌疑的视频片段列表。
10950
10959
  */
10951
- SegmentSet: Array<MediaContentReviewAsrTextSegmentItem>;
10960
+ SegmentSet?: Array<MediaContentReviewAsrTextSegmentItem>;
10952
10961
  }
10953
10962
  /**
10954
10963
  * 直播 AI 人脸识别结果
@@ -11173,7 +11182,7 @@ export interface AdaptiveStreamTemplate {
11173
11182
  RemoveVideo?: number;
11174
11183
  /**
11175
11184
  * 音频参数信息列表。
11176
- 注意:参数数组长度最大为64。
11185
+ 注意:参数只在自适应转码使用音轨合并多音轨时使用, 参数数组长度最大为64。
11177
11186
  注意:此字段可能返回 null,表示取不到有效值。
11178
11187
  */
11179
11188
  AudioList?: Array<AudioTemplateInfo>;
@@ -12090,14 +12099,14 @@ export interface AiReviewPornTaskOutput {
12090
12099
  /**
12091
12100
  * 视频鉴黄评分,分值为0到100。
12092
12101
  */
12093
- Confidence: number;
12102
+ Confidence?: number;
12094
12103
  /**
12095
12104
  * 鉴黄结果建议,取值范围:
12096
12105
  <li>pass。</li>
12097
12106
  <li>review。</li>
12098
12107
  <li>block。</li>
12099
12108
  */
12100
- Suggestion: string;
12109
+ Suggestion?: string;
12101
12110
  /**
12102
12111
  * 视频鉴黄结果标签,取值范围:
12103
12112
  <li>porn:色情。</li>
@@ -12105,11 +12114,11 @@ export interface AiReviewPornTaskOutput {
12105
12114
  <li>vulgar:低俗。</li>
12106
12115
  <li>intimacy:亲密行为。</li>
12107
12116
  */
12108
- Label: string;
12117
+ Label?: string;
12109
12118
  /**
12110
12119
  * 有涉黄嫌疑的视频片段列表。
12111
12120
  */
12112
- SegmentSet: Array<MediaContentReviewSegmentItem>;
12121
+ SegmentSet?: Array<MediaContentReviewSegmentItem>;
12113
12122
  }
12114
12123
  /**
12115
12124
  * CreateWorkflow返回参数结构体
@@ -12307,19 +12316,19 @@ export interface AiRecognitionTaskOcrWordsSegmentItem {
12307
12316
  /**
12308
12317
  * 识别片段起始的偏移时间,单位:秒。
12309
12318
  */
12310
- StartTimeOffset: number;
12319
+ StartTimeOffset?: number;
12311
12320
  /**
12312
12321
  * 识别片段终止的偏移时间,单位:秒。
12313
12322
  */
12314
- EndTimeOffset: number;
12323
+ EndTimeOffset?: number;
12315
12324
  /**
12316
12325
  * 识别片段置信度。取值:0~100。
12317
12326
  */
12318
- Confidence: number;
12327
+ Confidence?: number;
12319
12328
  /**
12320
12329
  * 识别结果的区域坐标。数组包含 4 个元素 [x1,y1,x2,y2],依次表示区域左上点、右下点的横纵坐标。
12321
12330
  */
12322
- AreaCoordSet: Array<number | bigint>;
12331
+ AreaCoordSet?: Array<number | bigint>;
12323
12332
  }
12324
12333
  /**
12325
12334
  * DescribeLiveRecordTemplates请求参数结构体
@@ -13501,7 +13510,7 @@ export interface AiRecognitionTaskOcrFullTextResultInput {
13501
13510
  /**
13502
13511
  * 文本全文识别模板 ID。
13503
13512
  */
13504
- Definition: number;
13513
+ Definition?: number;
13505
13514
  }
13506
13515
  /**
13507
13516
  * DeleteStreamLinkEvent返回参数结构体
@@ -14427,7 +14436,7 @@ export interface AiReviewProhibitedOcrTaskInput {
14427
14436
  /**
14428
14437
  * 鉴违禁模板 ID。
14429
14438
  */
14430
- Definition: number;
14439
+ Definition?: number;
14431
14440
  }
14432
14441
  /**
14433
14442
  * DeleteWatermarkTemplate请求参数结构体
@@ -14843,35 +14852,35 @@ export interface MediaContentReviewSegmentItem {
14843
14852
  /**
14844
14853
  * 嫌疑片段起始的偏移时间,单位:秒。
14845
14854
  */
14846
- StartTimeOffset: number;
14855
+ StartTimeOffset?: number;
14847
14856
  /**
14848
14857
  * 嫌疑片段结束的偏移时间,单位:秒。
14849
14858
  */
14850
- EndTimeOffset: number;
14859
+ EndTimeOffset?: number;
14851
14860
  /**
14852
14861
  * 嫌疑片段涉黄分数。
14853
14862
  */
14854
- Confidence: number;
14863
+ Confidence?: number;
14855
14864
  /**
14856
14865
  * 嫌疑片段鉴黄结果标签。
14857
14866
  */
14858
- Label: string;
14867
+ Label?: string;
14859
14868
  /**
14860
14869
  * 嫌疑片段鉴黄结果建议,取值范围:
14861
14870
  <li>pass。</li>
14862
14871
  <li>review。</li>
14863
14872
  <li>block。</li>
14864
14873
  */
14865
- Suggestion: string;
14874
+ Suggestion?: string;
14866
14875
  /**
14867
14876
  * 嫌疑图片 URL (图片不会永久存储,到达
14868
14877
  PicUrlExpireTime 时间点后图片将被删除)。
14869
14878
  */
14870
- Url: string;
14879
+ Url?: string;
14871
14880
  /**
14872
14881
  * 嫌疑图片 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
14873
14882
  */
14874
- PicUrlExpireTime: string;
14883
+ PicUrlExpireTime?: string;
14875
14884
  }
14876
14885
  /**
14877
14886
  * 内容审核结果