tencentcloud-sdk-nodejs-intl-en 3.0.1355 → 3.0.1356
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 +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/dc/v20180410/dc_client.js +1 -2
- package/tencentcloud/dc/v20180410/models.js +89 -22
- package/tencentcloud/gwlb/v20240906/models.js +89 -0
- package/tencentcloud/hunyuan/v20230901/hunyuan_client.js +29 -3
- package/tencentcloud/hunyuan/v20230901/models.js +241 -66
- package/tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.js +23 -9
- package/tencentcloud/intlpartnersmgt/v20220928/models.js +376 -240
- package/tencentcloud/sms/v20210111/models.js +21 -5
- package/tencentcloud/sms/v20210111/sms_client.js +2 -4
- package/tencentcloud/ssl/v20191205/models.js +464 -0
- package/tencentcloud/ssl/v20191205/ssl_client.js +26 -0
- package/tencentcloud/teo/v20220901/models.js +2 -2
- package/tencentcloud/teo/v20220901/teo_client.js +1 -1
|
@@ -626,6 +626,109 @@ class SubmitHunyuanTo3DRapidJobResponse extends AbstractModel {
|
|
|
626
626
|
}
|
|
627
627
|
}
|
|
628
628
|
|
|
629
|
+
/**
|
|
630
|
+
* SubmitAutoRiggingJob response structure.
|
|
631
|
+
* @class
|
|
632
|
+
*/
|
|
633
|
+
class SubmitAutoRiggingJobResponse extends AbstractModel {
|
|
634
|
+
constructor(){
|
|
635
|
+
super();
|
|
636
|
+
|
|
637
|
+
/**
|
|
638
|
+
* Task ID (valid period: 24 hours).
|
|
639
|
+
* @type {string || null}
|
|
640
|
+
*/
|
|
641
|
+
this.JobId = null;
|
|
642
|
+
|
|
643
|
+
/**
|
|
644
|
+
* 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.
|
|
645
|
+
* @type {string || null}
|
|
646
|
+
*/
|
|
647
|
+
this.RequestId = null;
|
|
648
|
+
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
/**
|
|
652
|
+
* @private
|
|
653
|
+
*/
|
|
654
|
+
deserialize(params) {
|
|
655
|
+
if (!params) {
|
|
656
|
+
return;
|
|
657
|
+
}
|
|
658
|
+
this.JobId = 'JobId' in params ? params.JobId : null;
|
|
659
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
660
|
+
|
|
661
|
+
}
|
|
662
|
+
}
|
|
663
|
+
|
|
664
|
+
/**
|
|
665
|
+
* DescribeAutoRiggingJob response structure.
|
|
666
|
+
* @class
|
|
667
|
+
*/
|
|
668
|
+
class DescribeAutoRiggingJobResponse extends AbstractModel {
|
|
669
|
+
constructor(){
|
|
670
|
+
super();
|
|
671
|
+
|
|
672
|
+
/**
|
|
673
|
+
* Task status:
|
|
674
|
+
WAIT: waiting;
|
|
675
|
+
RUN: running;
|
|
676
|
+
FAIL: failed;
|
|
677
|
+
DONE: successfu.
|
|
678
|
+
* @type {string || null}
|
|
679
|
+
*/
|
|
680
|
+
this.Status = null;
|
|
681
|
+
|
|
682
|
+
/**
|
|
683
|
+
* Error code.
|
|
684
|
+
* @type {string || null}
|
|
685
|
+
*/
|
|
686
|
+
this.ErrorCode = null;
|
|
687
|
+
|
|
688
|
+
/**
|
|
689
|
+
* Error message.
|
|
690
|
+
* @type {string || null}
|
|
691
|
+
*/
|
|
692
|
+
this.ErrorMessage = null;
|
|
693
|
+
|
|
694
|
+
/**
|
|
695
|
+
* Describes the generated 3d file array (valid period: 24 hours).
|
|
696
|
+
* @type {Array.<File3D> || null}
|
|
697
|
+
*/
|
|
698
|
+
this.ResultFile3Ds = null;
|
|
699
|
+
|
|
700
|
+
/**
|
|
701
|
+
* 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.
|
|
702
|
+
* @type {string || null}
|
|
703
|
+
*/
|
|
704
|
+
this.RequestId = null;
|
|
705
|
+
|
|
706
|
+
}
|
|
707
|
+
|
|
708
|
+
/**
|
|
709
|
+
* @private
|
|
710
|
+
*/
|
|
711
|
+
deserialize(params) {
|
|
712
|
+
if (!params) {
|
|
713
|
+
return;
|
|
714
|
+
}
|
|
715
|
+
this.Status = 'Status' in params ? params.Status : null;
|
|
716
|
+
this.ErrorCode = 'ErrorCode' in params ? params.ErrorCode : null;
|
|
717
|
+
this.ErrorMessage = 'ErrorMessage' in params ? params.ErrorMessage : null;
|
|
718
|
+
|
|
719
|
+
if (params.ResultFile3Ds) {
|
|
720
|
+
this.ResultFile3Ds = new Array();
|
|
721
|
+
for (let z in params.ResultFile3Ds) {
|
|
722
|
+
let obj = new File3D();
|
|
723
|
+
obj.deserialize(params.ResultFile3Ds[z]);
|
|
724
|
+
this.ResultFile3Ds.push(obj);
|
|
725
|
+
}
|
|
726
|
+
}
|
|
727
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
728
|
+
|
|
729
|
+
}
|
|
730
|
+
}
|
|
731
|
+
|
|
629
732
|
/**
|
|
630
733
|
* ChatTranslations request structure.
|
|
631
734
|
* @class
|
|
@@ -1092,6 +1195,41 @@ class TranslationDelta extends AbstractModel {
|
|
|
1092
1195
|
}
|
|
1093
1196
|
}
|
|
1094
1197
|
|
|
1198
|
+
/**
|
|
1199
|
+
* Translate the session content via translation api.
|
|
1200
|
+
* @class
|
|
1201
|
+
*/
|
|
1202
|
+
class TranslationMessage extends AbstractModel {
|
|
1203
|
+
constructor(){
|
|
1204
|
+
super();
|
|
1205
|
+
|
|
1206
|
+
/**
|
|
1207
|
+
* Role. valid values: system, user, assistant, tool.
|
|
1208
|
+
* @type {string || null}
|
|
1209
|
+
*/
|
|
1210
|
+
this.Role = null;
|
|
1211
|
+
|
|
1212
|
+
/**
|
|
1213
|
+
* Text content.
|
|
1214
|
+
* @type {string || null}
|
|
1215
|
+
*/
|
|
1216
|
+
this.Content = null;
|
|
1217
|
+
|
|
1218
|
+
}
|
|
1219
|
+
|
|
1220
|
+
/**
|
|
1221
|
+
* @private
|
|
1222
|
+
*/
|
|
1223
|
+
deserialize(params) {
|
|
1224
|
+
if (!params) {
|
|
1225
|
+
return;
|
|
1226
|
+
}
|
|
1227
|
+
this.Role = 'Role' in params ? params.Role : null;
|
|
1228
|
+
this.Content = 'Content' in params ? params.Content : null;
|
|
1229
|
+
|
|
1230
|
+
}
|
|
1231
|
+
}
|
|
1232
|
+
|
|
1095
1233
|
/**
|
|
1096
1234
|
* SubmitHunyuanTo3DRapidJob request structure.
|
|
1097
1235
|
* @class
|
|
@@ -1169,6 +1307,46 @@ Default model file format is GLB
|
|
|
1169
1307
|
}
|
|
1170
1308
|
}
|
|
1171
1309
|
|
|
1310
|
+
/**
|
|
1311
|
+
* SubmitAutoRiggingJob request structure.
|
|
1312
|
+
* @class
|
|
1313
|
+
*/
|
|
1314
|
+
class SubmitAutoRiggingJobRequest extends AbstractModel {
|
|
1315
|
+
constructor(){
|
|
1316
|
+
super();
|
|
1317
|
+
|
|
1318
|
+
/**
|
|
1319
|
+
* <p>3D Character Model File: Generates a 3D character animation based on the provided source model.<br>The character model must be in a standard T-Pose (a standing posture with both arms extended horizontally). You must select exactly one of the following 3D model file options; reference specifications:<br>fbx: 3D model file in FBX format; file size must not exceed 60 MB.<br>obj: 3D model file in OBJ format; file size must not exceed 60 MB.</p>
|
|
1320
|
+
* @type {InputFile3D || null}
|
|
1321
|
+
*/
|
|
1322
|
+
this.File3D = null;
|
|
1323
|
+
|
|
1324
|
+
/**
|
|
1325
|
+
* <p>Preset Action Types (Reference Values):</p><ol><li>Roundhouse Kick </li><li>Left Hook </li><li>Charged Attack </li><li>Charged Punch </li><li>Two-Hit Combo </li><li>Two-Hit Combo - 2 </li><li>Backstep </li><li>Hit Reaction </li><li>Hit Reaction - 2 </li><li>Hit Reaction - 3 </li><li>Knockdown - 1 </li><li>Knockdown - 2 </li><li>Landing </li><li>Dejection </li><li>Throat Slash </li><li>Jab </li><li>Continuous Strikes </li><li>Kick </li><li>Side Kick </li><li>Tai Chi </li><li>Backflip </li><li>Crouching Turn </li><li>Walk - 1 </li><li>Walk - 2 </li><li>Walk - 3 </li><li>Idle - 1 </li><li>Idle - 2 </li><li>Street Dance </li><li>The Twist </li><li>Turn Left </li><li>Turn Right </li><li>Jog </li><li>Jog - 2 </li><li>Run </li><li>Sprint - 1 </li><li>Sprint - 2 </li><li>Sprint - 3 </li><li>Jump (In Place) - 1 </li><li>Sliding Tackle </li><li>Long Jump (Forward) </li><li>Long Jump (Forward) - 2 </li><li>Vault </li><li>Intimidation </li><li>Fall Forward </li><li>Turn Right </li><li>Jump (In Place) - 2 </li><li>Turn Around </li><li>Send Shockwave</li></ol>
|
|
1326
|
+
* @type {number || null}
|
|
1327
|
+
*/
|
|
1328
|
+
this.MotionType = null;
|
|
1329
|
+
|
|
1330
|
+
}
|
|
1331
|
+
|
|
1332
|
+
/**
|
|
1333
|
+
* @private
|
|
1334
|
+
*/
|
|
1335
|
+
deserialize(params) {
|
|
1336
|
+
if (!params) {
|
|
1337
|
+
return;
|
|
1338
|
+
}
|
|
1339
|
+
|
|
1340
|
+
if (params.File3D) {
|
|
1341
|
+
let obj = new InputFile3D();
|
|
1342
|
+
obj.deserialize(params.File3D)
|
|
1343
|
+
this.File3D = obj;
|
|
1344
|
+
}
|
|
1345
|
+
this.MotionType = 'MotionType' in params ? params.MotionType : null;
|
|
1346
|
+
|
|
1347
|
+
}
|
|
1348
|
+
}
|
|
1349
|
+
|
|
1172
1350
|
/**
|
|
1173
1351
|
* SubmitHunyuanTo3DUVJob response structure.
|
|
1174
1352
|
* @class
|
|
@@ -1374,18 +1552,47 @@ quadrilateral: mix quadrangle and triangle faces to generate
|
|
|
1374
1552
|
}
|
|
1375
1553
|
|
|
1376
1554
|
/**
|
|
1377
|
-
*
|
|
1555
|
+
* DescribeHunyuanTo3DUVJob response structure.
|
|
1378
1556
|
* @class
|
|
1379
1557
|
*/
|
|
1380
|
-
class
|
|
1558
|
+
class DescribeHunyuanTo3DUVJobResponse extends AbstractModel {
|
|
1381
1559
|
constructor(){
|
|
1382
1560
|
super();
|
|
1383
1561
|
|
|
1384
1562
|
/**
|
|
1385
|
-
* Task
|
|
1563
|
+
* Task status
|
|
1564
|
+
WAIT: waiting;
|
|
1565
|
+
RUN: running;
|
|
1566
|
+
FAIL: failed;
|
|
1567
|
+
DONE: successful;
|
|
1568
|
+
Example value: RUN
|
|
1386
1569
|
* @type {string || null}
|
|
1387
1570
|
*/
|
|
1388
|
-
this.
|
|
1571
|
+
this.Status = null;
|
|
1572
|
+
|
|
1573
|
+
/**
|
|
1574
|
+
* Error code
|
|
1575
|
+
* @type {string || null}
|
|
1576
|
+
*/
|
|
1577
|
+
this.ErrorCode = null;
|
|
1578
|
+
|
|
1579
|
+
/**
|
|
1580
|
+
* Error message
|
|
1581
|
+
* @type {string || null}
|
|
1582
|
+
*/
|
|
1583
|
+
this.ErrorMessage = null;
|
|
1584
|
+
|
|
1585
|
+
/**
|
|
1586
|
+
* File generation URL address, with a valid period of 1 day
|
|
1587
|
+
* @type {Array.<File3D> || null}
|
|
1588
|
+
*/
|
|
1589
|
+
this.ResultFile3Ds = null;
|
|
1590
|
+
|
|
1591
|
+
/**
|
|
1592
|
+
* 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.
|
|
1593
|
+
* @type {string || null}
|
|
1594
|
+
*/
|
|
1595
|
+
this.RequestId = null;
|
|
1389
1596
|
|
|
1390
1597
|
}
|
|
1391
1598
|
|
|
@@ -1396,7 +1603,19 @@ class QueryHunyuanTo3DTextureEditJobRequest extends AbstractModel {
|
|
|
1396
1603
|
if (!params) {
|
|
1397
1604
|
return;
|
|
1398
1605
|
}
|
|
1399
|
-
this.
|
|
1606
|
+
this.Status = 'Status' in params ? params.Status : null;
|
|
1607
|
+
this.ErrorCode = 'ErrorCode' in params ? params.ErrorCode : null;
|
|
1608
|
+
this.ErrorMessage = 'ErrorMessage' in params ? params.ErrorMessage : null;
|
|
1609
|
+
|
|
1610
|
+
if (params.ResultFile3Ds) {
|
|
1611
|
+
this.ResultFile3Ds = new Array();
|
|
1612
|
+
for (let z in params.ResultFile3Ds) {
|
|
1613
|
+
let obj = new File3D();
|
|
1614
|
+
obj.deserialize(params.ResultFile3Ds[z]);
|
|
1615
|
+
this.ResultFile3Ds.push(obj);
|
|
1616
|
+
}
|
|
1617
|
+
}
|
|
1618
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
1400
1619
|
|
|
1401
1620
|
}
|
|
1402
1621
|
}
|
|
@@ -1565,47 +1784,18 @@ class Describe3DSmartTopologyJobResponse extends AbstractModel {
|
|
|
1565
1784
|
}
|
|
1566
1785
|
|
|
1567
1786
|
/**
|
|
1568
|
-
*
|
|
1787
|
+
* QueryHunyuanTo3DTextureEditJob request structure.
|
|
1569
1788
|
* @class
|
|
1570
1789
|
*/
|
|
1571
|
-
class
|
|
1790
|
+
class QueryHunyuanTo3DTextureEditJobRequest extends AbstractModel {
|
|
1572
1791
|
constructor(){
|
|
1573
1792
|
super();
|
|
1574
1793
|
|
|
1575
1794
|
/**
|
|
1576
|
-
* Task
|
|
1577
|
-
WAIT: waiting;
|
|
1578
|
-
RUN: running;
|
|
1579
|
-
FAIL: failed;
|
|
1580
|
-
DONE: successful;
|
|
1581
|
-
Example value: RUN
|
|
1582
|
-
* @type {string || null}
|
|
1583
|
-
*/
|
|
1584
|
-
this.Status = null;
|
|
1585
|
-
|
|
1586
|
-
/**
|
|
1587
|
-
* Error code
|
|
1588
|
-
* @type {string || null}
|
|
1589
|
-
*/
|
|
1590
|
-
this.ErrorCode = null;
|
|
1591
|
-
|
|
1592
|
-
/**
|
|
1593
|
-
* Error message
|
|
1594
|
-
* @type {string || null}
|
|
1595
|
-
*/
|
|
1596
|
-
this.ErrorMessage = null;
|
|
1597
|
-
|
|
1598
|
-
/**
|
|
1599
|
-
* File generation URL address, with a valid period of 1 day
|
|
1600
|
-
* @type {Array.<File3D> || null}
|
|
1601
|
-
*/
|
|
1602
|
-
this.ResultFile3Ds = null;
|
|
1603
|
-
|
|
1604
|
-
/**
|
|
1605
|
-
* 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.
|
|
1795
|
+
* Task ID
|
|
1606
1796
|
* @type {string || null}
|
|
1607
1797
|
*/
|
|
1608
|
-
this.
|
|
1798
|
+
this.JobId = null;
|
|
1609
1799
|
|
|
1610
1800
|
}
|
|
1611
1801
|
|
|
@@ -1616,19 +1806,7 @@ Example value: RUN
|
|
|
1616
1806
|
if (!params) {
|
|
1617
1807
|
return;
|
|
1618
1808
|
}
|
|
1619
|
-
this.
|
|
1620
|
-
this.ErrorCode = 'ErrorCode' in params ? params.ErrorCode : null;
|
|
1621
|
-
this.ErrorMessage = 'ErrorMessage' in params ? params.ErrorMessage : null;
|
|
1622
|
-
|
|
1623
|
-
if (params.ResultFile3Ds) {
|
|
1624
|
-
this.ResultFile3Ds = new Array();
|
|
1625
|
-
for (let z in params.ResultFile3Ds) {
|
|
1626
|
-
let obj = new File3D();
|
|
1627
|
-
obj.deserialize(params.ResultFile3Ds[z]);
|
|
1628
|
-
this.ResultFile3Ds.push(obj);
|
|
1629
|
-
}
|
|
1630
|
-
}
|
|
1631
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
1809
|
+
this.JobId = 'JobId' in params ? params.JobId : null;
|
|
1632
1810
|
|
|
1633
1811
|
}
|
|
1634
1812
|
}
|
|
@@ -1942,24 +2120,18 @@ class DescribeConvert3DFormatJobRequest extends AbstractModel {
|
|
|
1942
2120
|
}
|
|
1943
2121
|
|
|
1944
2122
|
/**
|
|
1945
|
-
*
|
|
2123
|
+
* DescribeAutoRiggingJob request structure.
|
|
1946
2124
|
* @class
|
|
1947
2125
|
*/
|
|
1948
|
-
class
|
|
2126
|
+
class DescribeAutoRiggingJobRequest extends AbstractModel {
|
|
1949
2127
|
constructor(){
|
|
1950
2128
|
super();
|
|
1951
2129
|
|
|
1952
2130
|
/**
|
|
1953
|
-
*
|
|
1954
|
-
* @type {string || null}
|
|
1955
|
-
*/
|
|
1956
|
-
this.Role = null;
|
|
1957
|
-
|
|
1958
|
-
/**
|
|
1959
|
-
* Text content.
|
|
2131
|
+
* Task ID (valid period: 24 hours).
|
|
1960
2132
|
* @type {string || null}
|
|
1961
2133
|
*/
|
|
1962
|
-
this.
|
|
2134
|
+
this.JobId = null;
|
|
1963
2135
|
|
|
1964
2136
|
}
|
|
1965
2137
|
|
|
@@ -1970,8 +2142,7 @@ class TranslationMessage extends AbstractModel {
|
|
|
1970
2142
|
if (!params) {
|
|
1971
2143
|
return;
|
|
1972
2144
|
}
|
|
1973
|
-
this.
|
|
1974
|
-
this.Content = 'Content' in params ? params.Content : null;
|
|
2145
|
+
this.JobId = 'JobId' in params ? params.JobId : null;
|
|
1975
2146
|
|
|
1976
2147
|
}
|
|
1977
2148
|
}
|
|
@@ -2112,6 +2283,8 @@ module.exports = {
|
|
|
2112
2283
|
SubmitHunyuanTo3DTextureEditJobRequest: SubmitHunyuanTo3DTextureEditJobRequest,
|
|
2113
2284
|
Usage: Usage,
|
|
2114
2285
|
SubmitHunyuanTo3DRapidJobResponse: SubmitHunyuanTo3DRapidJobResponse,
|
|
2286
|
+
SubmitAutoRiggingJobResponse: SubmitAutoRiggingJobResponse,
|
|
2287
|
+
DescribeAutoRiggingJobResponse: DescribeAutoRiggingJobResponse,
|
|
2115
2288
|
ChatTranslationsRequest: ChatTranslationsRequest,
|
|
2116
2289
|
QueryHunyuanTo3DTextureEditJobResponse: QueryHunyuanTo3DTextureEditJobResponse,
|
|
2117
2290
|
SubmitHunyuanTo3DUVJobRequest: SubmitHunyuanTo3DUVJobRequest,
|
|
@@ -2122,16 +2295,18 @@ module.exports = {
|
|
|
2122
2295
|
SubmitConvert3DFormatJobRequest: SubmitConvert3DFormatJobRequest,
|
|
2123
2296
|
InputFile3D: InputFile3D,
|
|
2124
2297
|
TranslationDelta: TranslationDelta,
|
|
2298
|
+
TranslationMessage: TranslationMessage,
|
|
2125
2299
|
SubmitHunyuanTo3DRapidJobRequest: SubmitHunyuanTo3DRapidJobRequest,
|
|
2300
|
+
SubmitAutoRiggingJobRequest: SubmitAutoRiggingJobRequest,
|
|
2126
2301
|
SubmitHunyuanTo3DUVJobResponse: SubmitHunyuanTo3DUVJobResponse,
|
|
2127
2302
|
SubmitHunyuan3DPartJobResponse: SubmitHunyuan3DPartJobResponse,
|
|
2128
2303
|
SubmitHunyuanTo3DProJobRequest: SubmitHunyuanTo3DProJobRequest,
|
|
2129
|
-
|
|
2304
|
+
DescribeHunyuanTo3DUVJobResponse: DescribeHunyuanTo3DUVJobResponse,
|
|
2130
2305
|
Convert3DFormatResponse: Convert3DFormatResponse,
|
|
2131
2306
|
DescribeHunyuanTo3DUVJobRequest: DescribeHunyuanTo3DUVJobRequest,
|
|
2132
2307
|
SubmitHunyuan3DPartJobRequest: SubmitHunyuan3DPartJobRequest,
|
|
2133
2308
|
Describe3DSmartTopologyJobResponse: Describe3DSmartTopologyJobResponse,
|
|
2134
|
-
|
|
2309
|
+
QueryHunyuanTo3DTextureEditJobRequest: QueryHunyuanTo3DTextureEditJobRequest,
|
|
2135
2310
|
Reference: Reference,
|
|
2136
2311
|
ImageInfo: ImageInfo,
|
|
2137
2312
|
SubmitHunyuanTo3DProJobResponse: SubmitHunyuanTo3DProJobResponse,
|
|
@@ -2140,7 +2315,7 @@ module.exports = {
|
|
|
2140
2315
|
QueryHunyuanTo3DProJobResponse: QueryHunyuanTo3DProJobResponse,
|
|
2141
2316
|
QueryHunyuan3DPartJobRequest: QueryHunyuan3DPartJobRequest,
|
|
2142
2317
|
DescribeConvert3DFormatJobRequest: DescribeConvert3DFormatJobRequest,
|
|
2143
|
-
|
|
2318
|
+
DescribeAutoRiggingJobRequest: DescribeAutoRiggingJobRequest,
|
|
2144
2319
|
QueryHunyuanTo3DRapidJobRequest: QueryHunyuanTo3DRapidJobRequest,
|
|
2145
2320
|
DescribeConvert3DFormatJobResponse: DescribeConvert3DFormatJobResponse,
|
|
2146
2321
|
Describe3DSmartTopologyJobRequest: Describe3DSmartTopologyJobRequest,
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
const models = require("./models");
|
|
18
18
|
const AbstractClient = require('../../common/abstract_client')
|
|
19
19
|
const SummaryDetails = models.SummaryDetails;
|
|
20
|
+
const DescribeCustomerOwnVoucherUsageDetailsResponse = models.DescribeCustomerOwnVoucherUsageDetailsResponse;
|
|
20
21
|
const DescribeCustomerVoucherListResponse = models.DescribeCustomerVoucherListResponse;
|
|
21
22
|
const QueryDirectCustomersCreditData = models.QueryDirectCustomersCreditData;
|
|
22
23
|
const DescribeCustomerOwnVoucherListRequest = models.DescribeCustomerOwnVoucherListRequest;
|
|
@@ -24,7 +25,7 @@ const DescribeCustomerBillSummaryResponse = models.DescribeCustomerBillSummaryRe
|
|
|
24
25
|
const TradeTwoNode = models.TradeTwoNode;
|
|
25
26
|
const QueryT1IndirectCustomersDetailRequest = models.QueryT1IndirectCustomersDetailRequest;
|
|
26
27
|
const CreateAndSendClientInvitationMailResponse = models.CreateAndSendClientInvitationMailResponse;
|
|
27
|
-
const
|
|
28
|
+
const QueryPendingClientsV2Request = models.QueryPendingClientsV2Request;
|
|
28
29
|
const RegionSummaryOverviewItem = models.RegionSummaryOverviewItem;
|
|
29
30
|
const QuerySubAgentsDetailV2Response = models.QuerySubAgentsDetailV2Response;
|
|
30
31
|
const DescribeCustomerBillDownloadUrlRequest = models.DescribeCustomerBillDownloadUrlRequest;
|
|
@@ -84,6 +85,7 @@ const QueryPolicyProductListByCodeRequest = models.QueryPolicyProductListByCodeR
|
|
|
84
85
|
const QueryT1IndirectCustomersDetailResponseData = models.QueryT1IndirectCustomersDetailResponseData;
|
|
85
86
|
const DescribeCustomerOwnVoucherItem = models.DescribeCustomerOwnVoucherItem;
|
|
86
87
|
const DescribeCustomerInfoResponse = models.DescribeCustomerInfoResponse;
|
|
88
|
+
const DescribeCustomerOwnVoucherUsageDetailsRequest = models.DescribeCustomerOwnVoucherUsageDetailsRequest;
|
|
87
89
|
const QueryVoucherPoolResponse = models.QueryVoucherPoolResponse;
|
|
88
90
|
const QueryAccountVerificationStatusRequest = models.QueryAccountVerificationStatusRequest;
|
|
89
91
|
const ActionSummaryOverviewItem = models.ActionSummaryOverviewItem;
|
|
@@ -114,7 +116,7 @@ const DescribeBillDetailRequest = models.DescribeBillDetailRequest;
|
|
|
114
116
|
const QueryCreditByUinListRequest = models.QueryCreditByUinListRequest;
|
|
115
117
|
const CreateAccountResponse = models.CreateAccountResponse;
|
|
116
118
|
const ApproveClientApplyResponse = models.ApproveClientApplyResponse;
|
|
117
|
-
const
|
|
119
|
+
const CustomerBillDetailData = models.CustomerBillDetailData;
|
|
118
120
|
const TagInfo = models.TagInfo;
|
|
119
121
|
const QueryCreditByUinListResponse = models.QueryCreditByUinListResponse;
|
|
120
122
|
const BusinessSummaryOverviewItem = models.BusinessSummaryOverviewItem;
|
|
@@ -368,6 +370,18 @@ Callable roles: Reseller, Second-level Reseller or Distributor.
|
|
|
368
370
|
this.request("DescribeCustomerVoucherList", req, resp, cb);
|
|
369
371
|
}
|
|
370
372
|
|
|
373
|
+
/**
|
|
374
|
+
* This API is used to approve applications for second-level resellers.
|
|
375
|
+
Invocation Role: Distributor.
|
|
376
|
+
* @param {ApproveSubAgentApplyRequest} req
|
|
377
|
+
* @param {function(string, ApproveSubAgentApplyResponse):void} cb
|
|
378
|
+
* @public
|
|
379
|
+
*/
|
|
380
|
+
ApproveSubAgentApply(req, cb) {
|
|
381
|
+
let resp = new ApproveSubAgentApplyResponse();
|
|
382
|
+
this.request("ApproveSubAgentApply", req, resp, cb);
|
|
383
|
+
}
|
|
384
|
+
|
|
371
385
|
/**
|
|
372
386
|
* This API is used to obtain the total amount of customer bills by payment mode.
|
|
373
387
|
Callable roles: Distributor, Second-level reseller, Reseller
|
|
@@ -621,15 +635,15 @@ Callable roles: Distributor, Second-level reseller, Reseller
|
|
|
621
635
|
}
|
|
622
636
|
|
|
623
637
|
/**
|
|
624
|
-
*
|
|
625
|
-
|
|
626
|
-
* @param {
|
|
627
|
-
* @param {function(string,
|
|
638
|
+
* Description: The current API is used to query usage details of customer's own voucher by the customer self.
|
|
639
|
+
Call role: End customer.
|
|
640
|
+
* @param {DescribeCustomerOwnVoucherUsageDetailsRequest} req
|
|
641
|
+
* @param {function(string, DescribeCustomerOwnVoucherUsageDetailsResponse):void} cb
|
|
628
642
|
* @public
|
|
629
643
|
*/
|
|
630
|
-
|
|
631
|
-
let resp = new
|
|
632
|
-
this.request("
|
|
644
|
+
DescribeCustomerOwnVoucherUsageDetails(req, cb) {
|
|
645
|
+
let resp = new DescribeCustomerOwnVoucherUsageDetailsResponse();
|
|
646
|
+
this.request("DescribeCustomerOwnVoucherUsageDetails", req, resp, cb);
|
|
633
647
|
}
|
|
634
648
|
|
|
635
649
|
/**
|