tencentcloud-sdk-nodejs-intl-en 3.0.1074 → 3.0.1076

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-intl-en",
3
- "version": "3.0.1074",
3
+ "version": "3.0.1076",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -1,2 +1,2 @@
1
- const sdkVersion = "3.0.1074";
1
+ const sdkVersion = "3.0.1076";
2
2
  module.exports = sdkVersion
@@ -36,6 +36,7 @@ const AllocateCustomerCreditRequest = models.AllocateCustomerCreditRequest;
36
36
  const DescribeBillSummaryByRegionResponse = models.DescribeBillSummaryByRegionResponse;
37
37
  const DescribeCustomerBillSummaryResponse = models.DescribeCustomerBillSummaryResponse;
38
38
  const QueryCustomersCreditRequest = models.QueryCustomersCreditRequest;
39
+ const QueryPolicyProductListByCodeRequest = models.QueryPolicyProductListByCodeRequest;
39
40
  const DescribeBillDetailRequest = models.DescribeBillDetailRequest;
40
41
  const QueryCreditByUinListRequest = models.QueryCreditByUinListRequest;
41
42
  const CreateAccountResponse = models.CreateAccountResponse;
@@ -67,6 +68,7 @@ const QueryCreditQuotaRequest = models.QueryCreditQuotaRequest;
67
68
  const AllocateCustomerCreditResponse = models.AllocateCustomerCreditResponse;
68
69
  const QueryVoucherListByUinVoucherItem = models.QueryVoucherListByUinVoucherItem;
69
70
  const AllocateCreditPoolResponse = models.AllocateCreditPoolResponse;
71
+ const QueryPolicyProductListByCodeResponse = models.QueryPolicyProductListByCodeResponse;
70
72
  const DescribeBillSummaryByProductRequest = models.DescribeBillSummaryByProductRequest;
71
73
  const QueryDirectCustomersCreditData = models.QueryDirectCustomersCreditData;
72
74
  const GetCountryCodesRequest = models.GetCountryCodesRequest;
@@ -84,6 +86,7 @@ const SummaryDetails = models.SummaryDetails;
84
86
  const DescribeCustomerInfoData = models.DescribeCustomerInfoData;
85
87
  const DescribeBillDownloadUrlResponse = models.DescribeBillDownloadUrlResponse;
86
88
  const ModifyClientRemarkRequest = models.ModifyClientRemarkRequest;
89
+ const PolicyProductList = models.PolicyProductList;
87
90
  const PayModeSummaryOverviewItem = models.PayModeSummaryOverviewItem;
88
91
  const QueryCustomersCreditData = models.QueryCustomersCreditData;
89
92
  const DescribeCustomerBillSummaryRequest = models.DescribeCustomerBillSummaryRequest;
@@ -281,7 +284,7 @@ class IntlpartnersmgtClient extends AbstractClient {
281
284
  }
282
285
 
283
286
  /**
284
- * This API is used to create Tencent Cloud customer accounts for first-level resellers/second-level resellers.After the account is created, it will be automatically bound to the partner account.Note:
287
+ * This API is used to create Tencent Cloud customer accounts for distributor/second-level resellers.After the account is created, it will be automatically bound to the partner account.Note:
285
288
  1. Create a Tencent Cloud account. The entered email address and mobile phone number need to be verified by the partner for validity.
286
289
  2. Customers need to add personal information when logging in for the first time.
287
290
  3. This interface needs to be applied for allowlist usage. Please contact the channel manager to initiate the application process.
@@ -350,7 +353,8 @@ class IntlpartnersmgtClient extends AbstractClient {
350
353
  }
351
354
 
352
355
  /**
353
- * This API is used to set and cancel forced service suspension.Reseller need to be allowlisted to use the API.
356
+ * This API is used to set and cancel forced service suspension.
357
+ Note:Reseller need to be allowlisted to use the API, please contact your business representative to apply for allowlist.
354
358
  * @param {ForceQNRequest} req
355
359
  * @param {function(string, ForceQNResponse):void} cb
356
360
  * @public
@@ -382,6 +386,17 @@ class IntlpartnersmgtClient extends AbstractClient {
382
386
  this.request("QueryAccountVerificationStatus", req, resp, cb);
383
387
  }
384
388
 
389
+ /**
390
+ * This API is used to query the product list information within the specified policy range. To call this API, contact your account manager to add it to the allowlist.
391
+ * @param {QueryPolicyProductListByCodeRequest} req
392
+ * @param {function(string, QueryPolicyProductListByCodeResponse):void} cb
393
+ * @public
394
+ */
395
+ QueryPolicyProductListByCode(req, cb) {
396
+ let resp = new QueryPolicyProductListByCodeResponse();
397
+ this.request("QueryPolicyProductListByCode", req, resp, cb);
398
+ }
399
+
385
400
  /**
386
401
  * This API is used to query all the credit allocation records of a single customer.
387
402
  * @param {QueryCreditAllocationHistoryRequest} req
@@ -860,6 +860,62 @@ class QueryCustomersCreditRequest extends AbstractModel {
860
860
  }
861
861
  }
862
862
 
863
+ /**
864
+ * QueryPolicyProductListByCode request structure.
865
+ * @class
866
+ */
867
+ class QueryPolicyProductListByCodeRequest extends AbstractModel {
868
+ constructor(){
869
+ super();
870
+
871
+ /**
872
+ * Policy code
873
+ * @type {string || null}
874
+ */
875
+ this.PolicyCode = null;
876
+
877
+ /**
878
+ * Product code
879
+ * @type {string || null}
880
+ */
881
+ this.ProductCode = null;
882
+
883
+ /**
884
+ * Product name
885
+ * @type {string || null}
886
+ */
887
+ this.ProductName = null;
888
+
889
+ /**
890
+ * Subproduct code
891
+ * @type {string || null}
892
+ */
893
+ this.SubProductCode = null;
894
+
895
+ /**
896
+ * Subproduct name
897
+ * @type {string || null}
898
+ */
899
+ this.SubProductName = null;
900
+
901
+ }
902
+
903
+ /**
904
+ * @private
905
+ */
906
+ deserialize(params) {
907
+ if (!params) {
908
+ return;
909
+ }
910
+ this.PolicyCode = 'PolicyCode' in params ? params.PolicyCode : null;
911
+ this.ProductCode = 'ProductCode' in params ? params.ProductCode : null;
912
+ this.ProductName = 'ProductName' in params ? params.ProductName : null;
913
+ this.SubProductCode = 'SubProductCode' in params ? params.SubProductCode : null;
914
+ this.SubProductName = 'SubProductName' in params ? params.SubProductName : null;
915
+
916
+ }
917
+ }
918
+
863
919
  /**
864
920
  * DescribeBillDetail request structure.
865
921
  * @class
@@ -2041,7 +2097,7 @@ Valid values: `personal`, `company`.
2041
2097
 
2042
2098
  /**
2043
2099
  * Registered email address, which should be valid and correct.
2044
- For example, account@qq.com.
2100
+ such as "account@qq.com"
2045
2101
  * @type {string || null}
2046
2102
  */
2047
2103
  this.Mail = null;
@@ -2061,22 +2117,22 @@ A password must contain numbers, letters, and symbols (!@#$%^&*()). Space is not
2061
2117
  this.ConfirmPassword = null;
2062
2118
 
2063
2119
  /**
2064
- * Customer's mobile number.
2065
- The caller needs to ensure the validity and correctness of the mobile number. A global mobile number within a range of 1-32 digits is allowed.
2120
+ * Customer's mobile number.
2121
+ The caller needs to ensure the validity and correctness of the mobile number. A global mobile number within a range of 1-32 digits is allowed.
2066
2122
  The system will perform binding limit verification of the mobile number you provide, allowing a maximum of 5 accounts per mobile number.
2067
2123
  * @type {string || null}
2068
2124
  */
2069
2125
  this.PhoneNum = null;
2070
2126
 
2071
2127
  /**
2072
- * Customer's country/region code, which can be obtained via the `GetCountryCodes` API, such as "852".
2128
+ * Customer's country/region code, which can be obtained via the [GetCountryCodes API](https://www.tencentcloud.com/document/product/1085/51416), such as "852".
2073
2129
  Parameter value is not allowed to be 7,380,86.
2074
2130
  * @type {string || null}
2075
2131
  */
2076
2132
  this.CountryCode = null;
2077
2133
 
2078
2134
  /**
2079
- * Customer's ISO2 standard country/region code, which can be obtained via the `GetCountryCodes` API. It should correspond to the `CountryCode` field, such as `HK`.
2135
+ * Customer's ISO2 standard country/region code, which can be obtained via the [GetCountryCodes API](https://www.tencentcloud.com/document/product/1085/51416). It should correspond to the `CountryCode` field, such as `HK`.
2080
2136
  * @type {string || null}
2081
2137
  */
2082
2138
  this.Area = null;
@@ -2088,9 +2144,8 @@ Parameter value is not allowed to be 7,380,86.
2088
2144
  this.Extended = null;
2089
2145
 
2090
2146
  /**
2091
- * Verification code.
2092
- It will be used to verify the validity of the mobile number you provide.
2093
- When the interface is requested for the first time, a null value can be passed in. The interface will send a 6-digit verification code by SMS to the mobile number you provide, and you need to pass it in again together with other parameters after you receive it.
2147
+ * VerifyCode. This field is required.
2148
+ Use the [SendVerifyCode API](https://www.tencentcloud.com/document/product/1085/65907) to obtain the verifycode.The SendVerifyCode API sends a 6-digit verifycode to your specified mobile number via SMS. After receiving it, you need to pass it along with other parameters.
2094
2149
  * @type {string || null}
2095
2150
  */
2096
2151
  this.VerifyCode = null;
@@ -2472,6 +2527,49 @@ class AllocateCreditPoolResponse extends AbstractModel {
2472
2527
  }
2473
2528
  }
2474
2529
 
2530
+ /**
2531
+ * QueryPolicyProductListByCode response structure.
2532
+ * @class
2533
+ */
2534
+ class QueryPolicyProductListByCodeResponse extends AbstractModel {
2535
+ constructor(){
2536
+ super();
2537
+
2538
+ /**
2539
+ * Policy product list
2540
+ * @type {Array.<PolicyProductList> || null}
2541
+ */
2542
+ this.ProductList = null;
2543
+
2544
+ /**
2545
+ * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
2546
+ * @type {string || null}
2547
+ */
2548
+ this.RequestId = null;
2549
+
2550
+ }
2551
+
2552
+ /**
2553
+ * @private
2554
+ */
2555
+ deserialize(params) {
2556
+ if (!params) {
2557
+ return;
2558
+ }
2559
+
2560
+ if (params.ProductList) {
2561
+ this.ProductList = new Array();
2562
+ for (let z in params.ProductList) {
2563
+ let obj = new PolicyProductList();
2564
+ obj.deserialize(params.ProductList[z]);
2565
+ this.ProductList.push(obj);
2566
+ }
2567
+ }
2568
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
2569
+
2570
+ }
2571
+ }
2572
+
2475
2573
  /**
2476
2574
  * DescribeBillSummaryByProduct request structure.
2477
2575
  * @class
@@ -3485,6 +3583,104 @@ class ModifyClientRemarkRequest extends AbstractModel {
3485
3583
  }
3486
3584
  }
3487
3585
 
3586
+ /**
3587
+ *
3588
+ * @class
3589
+ */
3590
+ class PolicyProductList extends AbstractModel {
3591
+ constructor(){
3592
+ super();
3593
+
3594
+ /**
3595
+ * Policy code.
3596
+ * @type {string || null}
3597
+ */
3598
+ this.PolicyCode = null;
3599
+
3600
+ /**
3601
+ * Product code, if the return is *, any item under this level is included in the policy product scope.
3602
+ * @type {string || null}
3603
+ */
3604
+ this.ProductCode = null;
3605
+
3606
+ /**
3607
+ * Product name, if the return is *, any item under this level is included in the policy product scope.
3608
+ * @type {string || null}
3609
+ */
3610
+ this.ProductName = null;
3611
+
3612
+ /**
3613
+ * SubProduct code, if the return is *, any item under this level is included in the policy product scope.
3614
+ * @type {string || null}
3615
+ */
3616
+ this.SubProductCode = null;
3617
+
3618
+ /**
3619
+ * SubProduct name, if the return is *, any item under this level is included in the policy product scope.
3620
+ * @type {string || null}
3621
+ */
3622
+ this.SubProductName = null;
3623
+
3624
+ /**
3625
+ * Component type code, if the return is *, any item under this level is included in the policy product scope.
3626
+ * @type {string || null}
3627
+ */
3628
+ this.ComponentTypeCode = null;
3629
+
3630
+ /**
3631
+ * Component type name, if the return is *, any item under this level is included in the policy product scope.
3632
+ * @type {string || null}
3633
+ */
3634
+ this.ComponentTypeName = null;
3635
+
3636
+ /**
3637
+ * Component code, if the return is *, any item under this level is included in the policy product scope.
3638
+ * @type {string || null}
3639
+ */
3640
+ this.ComponentCode = null;
3641
+
3642
+ /**
3643
+ * Component name, if the return is *, any item under this level is included in the policy product scope.
3644
+ * @type {string || null}
3645
+ */
3646
+ this.ComponentName = null;
3647
+
3648
+ /**
3649
+ * Policy effective date.
3650
+ * @type {string || null}
3651
+ */
3652
+ this.StartDate = null;
3653
+
3654
+ /**
3655
+ * Policy expiration date.
3656
+ * @type {string || null}
3657
+ */
3658
+ this.EndDate = null;
3659
+
3660
+ }
3661
+
3662
+ /**
3663
+ * @private
3664
+ */
3665
+ deserialize(params) {
3666
+ if (!params) {
3667
+ return;
3668
+ }
3669
+ this.PolicyCode = 'PolicyCode' in params ? params.PolicyCode : null;
3670
+ this.ProductCode = 'ProductCode' in params ? params.ProductCode : null;
3671
+ this.ProductName = 'ProductName' in params ? params.ProductName : null;
3672
+ this.SubProductCode = 'SubProductCode' in params ? params.SubProductCode : null;
3673
+ this.SubProductName = 'SubProductName' in params ? params.SubProductName : null;
3674
+ this.ComponentTypeCode = 'ComponentTypeCode' in params ? params.ComponentTypeCode : null;
3675
+ this.ComponentTypeName = 'ComponentTypeName' in params ? params.ComponentTypeName : null;
3676
+ this.ComponentCode = 'ComponentCode' in params ? params.ComponentCode : null;
3677
+ this.ComponentName = 'ComponentName' in params ? params.ComponentName : null;
3678
+ this.StartDate = 'StartDate' in params ? params.StartDate : null;
3679
+ this.EndDate = 'EndDate' in params ? params.EndDate : null;
3680
+
3681
+ }
3682
+ }
3683
+
3488
3684
  /**
3489
3685
  * Payment mode details in the customer bill data totaled by payment mode
3490
3686
  * @class
@@ -3802,6 +3998,7 @@ module.exports = {
3802
3998
  DescribeBillSummaryByRegionResponse: DescribeBillSummaryByRegionResponse,
3803
3999
  DescribeCustomerBillSummaryResponse: DescribeCustomerBillSummaryResponse,
3804
4000
  QueryCustomersCreditRequest: QueryCustomersCreditRequest,
4001
+ QueryPolicyProductListByCodeRequest: QueryPolicyProductListByCodeRequest,
3805
4002
  DescribeBillDetailRequest: DescribeBillDetailRequest,
3806
4003
  QueryCreditByUinListRequest: QueryCreditByUinListRequest,
3807
4004
  CreateAccountResponse: CreateAccountResponse,
@@ -3833,6 +4030,7 @@ module.exports = {
3833
4030
  AllocateCustomerCreditResponse: AllocateCustomerCreditResponse,
3834
4031
  QueryVoucherListByUinVoucherItem: QueryVoucherListByUinVoucherItem,
3835
4032
  AllocateCreditPoolResponse: AllocateCreditPoolResponse,
4033
+ QueryPolicyProductListByCodeResponse: QueryPolicyProductListByCodeResponse,
3836
4034
  DescribeBillSummaryByProductRequest: DescribeBillSummaryByProductRequest,
3837
4035
  QueryDirectCustomersCreditData: QueryDirectCustomersCreditData,
3838
4036
  GetCountryCodesRequest: GetCountryCodesRequest,
@@ -3850,6 +4048,7 @@ module.exports = {
3850
4048
  DescribeCustomerInfoData: DescribeCustomerInfoData,
3851
4049
  DescribeBillDownloadUrlResponse: DescribeBillDownloadUrlResponse,
3852
4050
  ModifyClientRemarkRequest: ModifyClientRemarkRequest,
4051
+ PolicyProductList: PolicyProductList,
3853
4052
  PayModeSummaryOverviewItem: PayModeSummaryOverviewItem,
3854
4053
  QueryCustomersCreditData: QueryCustomersCreditData,
3855
4054
  DescribeCustomerBillSummaryRequest: DescribeCustomerBillSummaryRequest,
@@ -3859,9 +3859,10 @@ class ParseLiveStreamProcessNotificationResponse extends AbstractModel {
3859
3859
 
3860
3860
  /**
3861
3861
  * Live stream processing result type, including:
3862
- <li>AiReviewResult: content moderation result;</li>
3863
- <li>AiRecognitionResult: content recognition result;</li>
3864
- <li>LiveRecordResult: live recording result;</li>
3862
+ <li>AiReviewResult: content auditing result.</li>
3863
+ <li>AiRecognitionResult: content recognition result.</li>
3864
+ <li>LiveRecordResult: live recording result.</li>
3865
+ <li>AiQualityControlResult: media quality inspection result.</li>
3865
3866
  <li>ProcessEof: live stream processing result.</li>
3866
3867
  * @type {string || null}
3867
3868
  */
@@ -3875,14 +3876,14 @@ class ParseLiveStreamProcessNotificationResponse extends AbstractModel {
3875
3876
 
3876
3877
  /**
3877
3878
  * Information of a live stream processing error, which is valid when `NotificationType` is `ProcessEof`.
3878
- Note: This field may return null, indicating that no valid values can be obtained.
3879
+ Note: when this field return null, means no valid values can be obtained.
3879
3880
  * @type {LiveStreamProcessErrorInfo || null}
3880
3881
  */
3881
3882
  this.ProcessEofInfo = null;
3882
3883
 
3883
3884
  /**
3884
3885
  * Content audit result, which is valid when `NotificationType` is `AiReviewResult`.
3885
- Note: This field may return null, indicating that no valid values can be obtained.
3886
+ Note: when this field return null, means no valid values can be obtained.
3886
3887
  * @type {LiveStreamAiReviewResultInfo || null}
3887
3888
  */
3888
3889
  this.AiReviewResultInfo = null;
@@ -3894,20 +3895,20 @@ Note: This field may return null, indicating that no valid values can be obtaine
3894
3895
  this.AiRecognitionResultInfo = null;
3895
3896
 
3896
3897
  /**
3897
- *
3898
+ * Content analysis result, which is valid if `NotificationType` is `AiAnalysisResult`.
3898
3899
  * @type {LiveStreamAiAnalysisResultInfo || null}
3899
3900
  */
3900
3901
  this.AiAnalysisResultInfo = null;
3901
3902
 
3902
3903
  /**
3903
- *
3904
+ * Media quality inspection result, which is valid if `NotificationType` is `AiQualityControlResult`.
3904
3905
  * @type {LiveStreamAiQualityControlResultInfo || null}
3905
3906
  */
3906
3907
  this.AiQualityControlResultInfo = null;
3907
3908
 
3908
3909
  /**
3909
3910
  * Live recording result is valid when NotificationType is LiveRecordResult.
3910
- Note: This field may return null, indicating that no valid values can be obtained.
3911
+ Note: when this field return null, means no valid values can be obtained.
3911
3912
  * @type {LiveStreamRecordResultInfo || null}
3912
3913
  */
3913
3914
  this.LiveRecordResultInfo = null;
@@ -3924,6 +3925,21 @@ Note: This field may return null, indicating that no valid values can be obtaine
3924
3925
  */
3925
3926
  this.SessionContext = null;
3926
3927
 
3928
+ /**
3929
+ * - Expiration time, event notification signature expiration UNIX timestamp. - By default, notifications sent by MPS expire after 10 minutes. If the expiration time specified has elapsed, a notification will be considered invalid. This can prevent replay attacks. - The format of Timestamp is a decimal UNIX timestamp, which is the number of seconds that have elapsed since January 1, 1970 (midnight UTC/GMT).
3930
+ Note: This field may return null, indicating that no valid value can be obtained.
3931
+ * @type {number || null}
3932
+ */
3933
+ this.Timestamp = null;
3934
+
3935
+ /**
3936
+ * Event notification security signature. Sign = MD5 (Timestamp + NotifyKey). Note: Media Processing Service concatenates Timestamp and NotifyKey from TaskNotifyConfig as a string and calculates the Sign value through MD5. This value is included in the notification message. Your backend server can verify whether the Sign is correct using the same algorithm, to confirm whether the message is indeed from the Media Processing Service backend.
3937
+
3938
+ Note: This field may return null, indicating that no valid value can be obtained.
3939
+ * @type {string || null}
3940
+ */
3941
+ this.Sign = null;
3942
+
3927
3943
  /**
3928
3944
  * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
3929
3945
  * @type {string || null}
@@ -3979,6 +3995,8 @@ Note: This field may return null, indicating that no valid values can be obtaine
3979
3995
  }
3980
3996
  this.SessionId = 'SessionId' in params ? params.SessionId : null;
3981
3997
  this.SessionContext = 'SessionContext' in params ? params.SessionContext : null;
3998
+ this.Timestamp = 'Timestamp' in params ? params.Timestamp : null;
3999
+ this.Sign = 'Sign' in params ? params.Sign : null;
3982
4000
  this.RequestId = 'RequestId' in params ? params.RequestId : null;
3983
4001
 
3984
4002
  }
@@ -20578,25 +20596,28 @@ class ImageEnhanceConfig extends AbstractModel {
20578
20596
 
20579
20597
  /**
20580
20598
  * Super-resolution configuration.
20581
- Note: This field may return null, indicating that no valid value can be obtained.
20599
+
20582
20600
  * @type {SuperResolutionConfig || null}
20583
20601
  */
20584
20602
  this.SuperResolution = null;
20585
20603
 
20586
20604
  /**
20587
- *
20605
+ * Color enhancement configuration.
20606
+
20588
20607
  * @type {ColorEnhanceConfig || null}
20589
20608
  */
20590
20609
  this.ColorEnhance = null;
20591
20610
 
20592
20611
  /**
20593
- *
20612
+ * Detail enhancement configuration.
20613
+
20594
20614
  * @type {SharpEnhanceConfig || null}
20595
20615
  */
20596
20616
  this.SharpEnhance = null;
20597
20617
 
20598
20618
  /**
20599
- *
20619
+ * Face enhancement configuration.
20620
+
20600
20621
  * @type {FaceEnhanceConfig || null}
20601
20622
  */
20602
20623
  this.FaceEnhance = null;
@@ -24817,18 +24838,25 @@ class AddOnSubtitle extends AbstractModel {
24817
24838
  <li>`subtitle-stream`: Add a subtitle track.</li>
24818
24839
  <li>`close-caption-708`: Embed CEA-708 subtitles in SEI frames.</li>
24819
24840
  <li>`close-caption-608`: Embed CEA-608 subtitles in SEI frames.</li>
24820
- Note: This field may return·null, indicating that no valid values can be obtained.
24841
+ Note: This field may return null, indicating that no valid values can be obtained.
24821
24842
  * @type {string || null}
24822
24843
  */
24823
24844
  this.Type = null;
24824
24845
 
24825
24846
  /**
24826
24847
  * The subtitle file.
24827
- Note: This field may return·null, indicating that no valid values can be obtained.
24848
+ Note: This field may return null, indicating that no valid values can be obtained.
24828
24849
  * @type {MediaInputInfo || null}
24829
24850
  */
24830
24851
  this.Subtitle = null;
24831
24852
 
24853
+ /**
24854
+ * Subtitle name.
24855
+ Note: This field may return null, indicating that no valid value can be obtained.
24856
+ * @type {string || null}
24857
+ */
24858
+ this.SubtitleName = null;
24859
+
24832
24860
  }
24833
24861
 
24834
24862
  /**
@@ -24845,6 +24873,7 @@ Note: This field may return·null, indicating that no valid values can be obtain
24845
24873
  obj.deserialize(params.Subtitle)
24846
24874
  this.Subtitle = obj;
24847
24875
  }
24876
+ this.SubtitleName = 'SubtitleName' in params ? params.SubtitleName : null;
24848
24877
 
24849
24878
  }
24850
24879
  }