tencentcloud-sdk-nodejs-intl-en 3.0.1396 → 3.0.1398
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/antiddos/index.js +1 -1
- package/tencentcloud/ciam/index.js +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/dts/index.js +1 -1
- package/tencentcloud/faceid/v20180301/models.js +49 -6
- package/tencentcloud/monitor/index.js +1 -1
- package/tencentcloud/organization/index.js +1 -1
- package/tencentcloud/tcsas/v20250106/models.js +1961 -561
- package/tencentcloud/tcsas/v20250106/tcsas_client.js +155 -17
- package/tencentcloud/teo/index.js +1 -1
- package/tencentcloud/tke/index.js +1 -1
- package/tencentcloud/vm/index.js +1 -1
- package/tencentcloud/wedata/index.js +1 -1
|
@@ -57,6 +57,48 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
57
57
|
}
|
|
58
58
|
}
|
|
59
59
|
|
|
60
|
+
/**
|
|
61
|
+
* DisableMNPPayment request structure.
|
|
62
|
+
* @class
|
|
63
|
+
*/
|
|
64
|
+
class DisableMNPPaymentRequest extends AbstractModel {
|
|
65
|
+
constructor(){
|
|
66
|
+
super();
|
|
67
|
+
|
|
68
|
+
/**
|
|
69
|
+
* <p>Platform ID.</p>
|
|
70
|
+
* @type {string || null}
|
|
71
|
+
*/
|
|
72
|
+
this.PlatformId = null;
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* <p>Superapp ID.</p>
|
|
76
|
+
* @type {string || null}
|
|
77
|
+
*/
|
|
78
|
+
this.ApplicationId = null;
|
|
79
|
+
|
|
80
|
+
/**
|
|
81
|
+
* <p>Primary key ID, obtained from the API response of approving mini program payment activation.</p>
|
|
82
|
+
* @type {number || null}
|
|
83
|
+
*/
|
|
84
|
+
this.ID = null;
|
|
85
|
+
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
/**
|
|
89
|
+
* @private
|
|
90
|
+
*/
|
|
91
|
+
deserialize(params) {
|
|
92
|
+
if (!params) {
|
|
93
|
+
return;
|
|
94
|
+
}
|
|
95
|
+
this.PlatformId = 'PlatformId' in params ? params.PlatformId : null;
|
|
96
|
+
this.ApplicationId = 'ApplicationId' in params ? params.ApplicationId : null;
|
|
97
|
+
this.ID = 'ID' in params ? params.ID : null;
|
|
98
|
+
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
60
102
|
/**
|
|
61
103
|
* DescribeMNGRetentionData request structure.
|
|
62
104
|
* @class
|
|
@@ -163,6 +205,48 @@ class DescribeSubscribeMessageTemplateLibraryListResp extends AbstractModel {
|
|
|
163
205
|
}
|
|
164
206
|
}
|
|
165
207
|
|
|
208
|
+
/**
|
|
209
|
+
* Age rating information.
|
|
210
|
+
* @class
|
|
211
|
+
*/
|
|
212
|
+
class AgeRatingItem extends AbstractModel {
|
|
213
|
+
constructor(){
|
|
214
|
+
super();
|
|
215
|
+
|
|
216
|
+
/**
|
|
217
|
+
* <p>Age rating standard.</p><p>Valid values:</p><ul><li>apple: Apple</li><li>iarc: Android.</li></ul>
|
|
218
|
+
* @type {string || null}
|
|
219
|
+
*/
|
|
220
|
+
this.StandardId = null;
|
|
221
|
+
|
|
222
|
+
/**
|
|
223
|
+
* <p>Applicable age for age rating.</p>
|
|
224
|
+
* @type {number || null}
|
|
225
|
+
*/
|
|
226
|
+
this.AgeRating = null;
|
|
227
|
+
|
|
228
|
+
/**
|
|
229
|
+
* <p>Age rating label.</p>
|
|
230
|
+
* @type {string || null}
|
|
231
|
+
*/
|
|
232
|
+
this.Label = null;
|
|
233
|
+
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
/**
|
|
237
|
+
* @private
|
|
238
|
+
*/
|
|
239
|
+
deserialize(params) {
|
|
240
|
+
if (!params) {
|
|
241
|
+
return;
|
|
242
|
+
}
|
|
243
|
+
this.StandardId = 'StandardId' in params ? params.StandardId : null;
|
|
244
|
+
this.AgeRating = 'AgeRating' in params ? params.AgeRating : null;
|
|
245
|
+
this.Label = 'Label' in params ? params.Label : null;
|
|
246
|
+
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
|
|
166
250
|
/**
|
|
167
251
|
* Response parameters for querying domain information.
|
|
168
252
|
* @class
|
|
@@ -554,6 +638,46 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
554
638
|
}
|
|
555
639
|
}
|
|
556
640
|
|
|
641
|
+
/**
|
|
642
|
+
* UnbindMNPPaymentMerchant response structure.
|
|
643
|
+
* @class
|
|
644
|
+
*/
|
|
645
|
+
class UnbindMNPPaymentMerchantResponse extends AbstractModel {
|
|
646
|
+
constructor(){
|
|
647
|
+
super();
|
|
648
|
+
|
|
649
|
+
/**
|
|
650
|
+
* <p>Response parameters structure for the mini program team actively unbinding the merchant account.</p>
|
|
651
|
+
* @type {BooleanInfo || null}
|
|
652
|
+
*/
|
|
653
|
+
this.Data = null;
|
|
654
|
+
|
|
655
|
+
/**
|
|
656
|
+
* 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.
|
|
657
|
+
* @type {string || null}
|
|
658
|
+
*/
|
|
659
|
+
this.RequestId = null;
|
|
660
|
+
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
/**
|
|
664
|
+
* @private
|
|
665
|
+
*/
|
|
666
|
+
deserialize(params) {
|
|
667
|
+
if (!params) {
|
|
668
|
+
return;
|
|
669
|
+
}
|
|
670
|
+
|
|
671
|
+
if (params.Data) {
|
|
672
|
+
let obj = new BooleanInfo();
|
|
673
|
+
obj.deserialize(params.Data)
|
|
674
|
+
this.Data = obj;
|
|
675
|
+
}
|
|
676
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
677
|
+
|
|
678
|
+
}
|
|
679
|
+
}
|
|
680
|
+
|
|
557
681
|
/**
|
|
558
682
|
* ReleaseMNGVersion response structure.
|
|
559
683
|
* @class
|
|
@@ -885,13 +1009,13 @@ class MNPVersionSubPackageInfo extends AbstractModel {
|
|
|
885
1009
|
super();
|
|
886
1010
|
|
|
887
1011
|
/**
|
|
888
|
-
* Package name
|
|
1012
|
+
* <p>Package name.</p>
|
|
889
1013
|
* @type {string || null}
|
|
890
1014
|
*/
|
|
891
1015
|
this.Name = null;
|
|
892
1016
|
|
|
893
1017
|
/**
|
|
894
|
-
* Package size
|
|
1018
|
+
* <p>Package size.</p>
|
|
895
1019
|
* @type {number || null}
|
|
896
1020
|
*/
|
|
897
1021
|
this.Size = null;
|
|
@@ -950,13 +1074,13 @@ class CreateMNPVersionRequest extends AbstractModel {
|
|
|
950
1074
|
this.MNPVersionIntro = null;
|
|
951
1075
|
|
|
952
1076
|
/**
|
|
953
|
-
* <p>Version type. Valid values: 1: Debug; 2: Development. Default value: 2.</p>
|
|
1077
|
+
* <p>Version type. Valid values: 1: Debug version; 2: Development version. Default value: 2.</p>
|
|
954
1078
|
* @type {number || null}
|
|
955
1079
|
*/
|
|
956
1080
|
this.VersionType = null;
|
|
957
1081
|
|
|
958
1082
|
/**
|
|
959
|
-
* <p>Compilation
|
|
1083
|
+
* <p>Compilation conditions.</p>
|
|
960
1084
|
* @type {string || null}
|
|
961
1085
|
*/
|
|
962
1086
|
this.CompileCondition = null;
|
|
@@ -968,7 +1092,7 @@ class CreateMNPVersionRequest extends AbstractModel {
|
|
|
968
1092
|
this.CompileConfig = null;
|
|
969
1093
|
|
|
970
1094
|
/**
|
|
971
|
-
* <p>
|
|
1095
|
+
* <p>CICD ID</p>
|
|
972
1096
|
* @type {string || null}
|
|
973
1097
|
*/
|
|
974
1098
|
this.PipelineId = null;
|
|
@@ -1205,6 +1329,125 @@ class DescribeMNPMAUDataDetailRequest extends AbstractModel {
|
|
|
1205
1329
|
}
|
|
1206
1330
|
}
|
|
1207
1331
|
|
|
1332
|
+
/**
|
|
1333
|
+
* Queries mini program payment approval status.
|
|
1334
|
+
* @class
|
|
1335
|
+
*/
|
|
1336
|
+
class ApplyPaymentOpenDetailRes extends AbstractModel {
|
|
1337
|
+
constructor(){
|
|
1338
|
+
super();
|
|
1339
|
+
|
|
1340
|
+
/**
|
|
1341
|
+
* <p>Approval status. Valid values: 0: In progress; 10: Approved; 20: Rejected.</p>
|
|
1342
|
+
* @type {number || null}
|
|
1343
|
+
*/
|
|
1344
|
+
this.ApprovalStatus = null;
|
|
1345
|
+
|
|
1346
|
+
/**
|
|
1347
|
+
* <p>Application time.</p><p>Unit: Milliseconds.</p>
|
|
1348
|
+
* @type {number || null}
|
|
1349
|
+
*/
|
|
1350
|
+
this.ApplyTime = null;
|
|
1351
|
+
|
|
1352
|
+
/**
|
|
1353
|
+
* <p>Approval time.</p><p>Unit: milliseconds.</p>
|
|
1354
|
+
* @type {number || null}
|
|
1355
|
+
*/
|
|
1356
|
+
this.ApprovalTime = null;
|
|
1357
|
+
|
|
1358
|
+
/**
|
|
1359
|
+
* <p>Approval note.</p>
|
|
1360
|
+
* @type {string || null}
|
|
1361
|
+
*/
|
|
1362
|
+
this.ApprovalNote = null;
|
|
1363
|
+
|
|
1364
|
+
/**
|
|
1365
|
+
* <p>Specifies whether to display the approval records. Valid values: 0: No; 1: Yes.</p>
|
|
1366
|
+
* @type {number || null}
|
|
1367
|
+
*/
|
|
1368
|
+
this.ApprovalShow = null;
|
|
1369
|
+
|
|
1370
|
+
/**
|
|
1371
|
+
* <p>Specifies whether the activation of mini program payment can be requested again. Valid values: 0: No; 1: Yes.</p>
|
|
1372
|
+
* @type {number || null}
|
|
1373
|
+
*/
|
|
1374
|
+
this.ApplyShow = null;
|
|
1375
|
+
|
|
1376
|
+
}
|
|
1377
|
+
|
|
1378
|
+
/**
|
|
1379
|
+
* @private
|
|
1380
|
+
*/
|
|
1381
|
+
deserialize(params) {
|
|
1382
|
+
if (!params) {
|
|
1383
|
+
return;
|
|
1384
|
+
}
|
|
1385
|
+
this.ApprovalStatus = 'ApprovalStatus' in params ? params.ApprovalStatus : null;
|
|
1386
|
+
this.ApplyTime = 'ApplyTime' in params ? params.ApplyTime : null;
|
|
1387
|
+
this.ApprovalTime = 'ApprovalTime' in params ? params.ApprovalTime : null;
|
|
1388
|
+
this.ApprovalNote = 'ApprovalNote' in params ? params.ApprovalNote : null;
|
|
1389
|
+
this.ApprovalShow = 'ApprovalShow' in params ? params.ApprovalShow : null;
|
|
1390
|
+
this.ApplyShow = 'ApplyShow' in params ? params.ApplyShow : null;
|
|
1391
|
+
|
|
1392
|
+
}
|
|
1393
|
+
}
|
|
1394
|
+
|
|
1395
|
+
/**
|
|
1396
|
+
* ApproveMNPPaymentEnable request structure.
|
|
1397
|
+
* @class
|
|
1398
|
+
*/
|
|
1399
|
+
class ApproveMNPPaymentEnableRequest extends AbstractModel {
|
|
1400
|
+
constructor(){
|
|
1401
|
+
super();
|
|
1402
|
+
|
|
1403
|
+
/**
|
|
1404
|
+
* <p>Platform ID.</p>
|
|
1405
|
+
* @type {string || null}
|
|
1406
|
+
*/
|
|
1407
|
+
this.PlatformId = null;
|
|
1408
|
+
|
|
1409
|
+
/**
|
|
1410
|
+
* <p>Superapp ID.</p>
|
|
1411
|
+
* @type {string || null}
|
|
1412
|
+
*/
|
|
1413
|
+
this.ApplicationId = null;
|
|
1414
|
+
|
|
1415
|
+
/**
|
|
1416
|
+
* <p>Approval number.</p>
|
|
1417
|
+
* @type {string || null}
|
|
1418
|
+
*/
|
|
1419
|
+
this.ApprovalNo = null;
|
|
1420
|
+
|
|
1421
|
+
/**
|
|
1422
|
+
* <p>Approval status. Valid values: 10: Approved; 20: Rejected.</p>
|
|
1423
|
+
* @type {number || null}
|
|
1424
|
+
*/
|
|
1425
|
+
this.ApprovalType = null;
|
|
1426
|
+
|
|
1427
|
+
/**
|
|
1428
|
+
* <p>Approval note.</p>
|
|
1429
|
+
* @type {string || null}
|
|
1430
|
+
*/
|
|
1431
|
+
this.ApprovalNote = null;
|
|
1432
|
+
|
|
1433
|
+
}
|
|
1434
|
+
|
|
1435
|
+
/**
|
|
1436
|
+
* @private
|
|
1437
|
+
*/
|
|
1438
|
+
deserialize(params) {
|
|
1439
|
+
if (!params) {
|
|
1440
|
+
return;
|
|
1441
|
+
}
|
|
1442
|
+
this.PlatformId = 'PlatformId' in params ? params.PlatformId : null;
|
|
1443
|
+
this.ApplicationId = 'ApplicationId' in params ? params.ApplicationId : null;
|
|
1444
|
+
this.ApprovalNo = 'ApprovalNo' in params ? params.ApprovalNo : null;
|
|
1445
|
+
this.ApprovalType = 'ApprovalType' in params ? params.ApprovalType : null;
|
|
1446
|
+
this.ApprovalNote = 'ApprovalNote' in params ? params.ApprovalNote : null;
|
|
1447
|
+
|
|
1448
|
+
}
|
|
1449
|
+
}
|
|
1450
|
+
|
|
1208
1451
|
/**
|
|
1209
1452
|
* CreateApplicationConfig request structure.
|
|
1210
1453
|
* @class
|
|
@@ -1555,119 +1798,125 @@ class DescribeMNPApprovalListData extends AbstractModel {
|
|
|
1555
1798
|
super();
|
|
1556
1799
|
|
|
1557
1800
|
/**
|
|
1558
|
-
* Approval number
|
|
1801
|
+
* <p>Approval number.</p>
|
|
1559
1802
|
* @type {string || null}
|
|
1560
1803
|
*/
|
|
1561
1804
|
this.ApprovalNo = null;
|
|
1562
1805
|
|
|
1563
1806
|
/**
|
|
1564
|
-
* Superapp ID
|
|
1807
|
+
* <p>Superapp ID.</p>
|
|
1565
1808
|
* @type {string || null}
|
|
1566
1809
|
*/
|
|
1567
1810
|
this.ApplicationId = null;
|
|
1568
1811
|
|
|
1569
1812
|
/**
|
|
1570
|
-
* Approval status. Valid values: 1: Processing; 2: Rejected; 3: Approved; 4: Cancelled
|
|
1813
|
+
* <p>Approval status. Valid values: 0: Pending; 1: Processing; 2: Rejected; 3: Approved; 4: Cancelled.</p>
|
|
1571
1814
|
* @type {number || null}
|
|
1572
1815
|
*/
|
|
1573
1816
|
this.ApprovalStatus = null;
|
|
1574
1817
|
|
|
1575
1818
|
/**
|
|
1576
|
-
* Mini program appid
|
|
1819
|
+
* <p>Mini program appid.</p>
|
|
1577
1820
|
* @type {string || null}
|
|
1578
1821
|
*/
|
|
1579
1822
|
this.MNPId = null;
|
|
1580
1823
|
|
|
1581
1824
|
/**
|
|
1582
|
-
* Mini program version
|
|
1825
|
+
* <p>Mini program version.</p>
|
|
1583
1826
|
* @type {string || null}
|
|
1584
1827
|
*/
|
|
1585
1828
|
this.MNPVersion = null;
|
|
1586
1829
|
|
|
1587
1830
|
/**
|
|
1588
|
-
* Mini program version ID
|
|
1831
|
+
* <p>Mini program version ID.</p>
|
|
1589
1832
|
* @type {number || null}
|
|
1590
1833
|
*/
|
|
1591
1834
|
this.MNPVersionId = null;
|
|
1592
1835
|
|
|
1593
1836
|
/**
|
|
1594
|
-
* Applicant
|
|
1837
|
+
* <p>Applicant.</p>
|
|
1595
1838
|
* @type {string || null}
|
|
1596
1839
|
*/
|
|
1597
1840
|
this.ApplyUser = null;
|
|
1598
1841
|
|
|
1599
1842
|
/**
|
|
1600
|
-
* Application time
|
|
1843
|
+
* <p>Application time.</p>
|
|
1601
1844
|
* @type {string || null}
|
|
1602
1845
|
*/
|
|
1603
1846
|
this.ApplyTime = null;
|
|
1604
1847
|
|
|
1605
1848
|
/**
|
|
1606
|
-
* Mini program name
|
|
1849
|
+
* <p>Mini program name.</p>
|
|
1607
1850
|
* @type {string || null}
|
|
1608
1851
|
*/
|
|
1609
1852
|
this.MNPName = null;
|
|
1610
1853
|
|
|
1611
1854
|
/**
|
|
1612
|
-
* Mini program icon
|
|
1855
|
+
* <p>Mini program icon.</p>
|
|
1613
1856
|
* @type {string || null}
|
|
1614
1857
|
*/
|
|
1615
1858
|
this.MNPIcon = null;
|
|
1616
1859
|
|
|
1617
1860
|
/**
|
|
1618
|
-
* Superapp name
|
|
1861
|
+
* <p>Superapp name.</p>
|
|
1619
1862
|
* @type {string || null}
|
|
1620
1863
|
*/
|
|
1621
1864
|
this.ApplicationName = null;
|
|
1622
1865
|
|
|
1623
1866
|
/**
|
|
1624
|
-
* Superapp icon
|
|
1867
|
+
* <p>Superapp icon.</p>
|
|
1625
1868
|
* @type {string || null}
|
|
1626
1869
|
*/
|
|
1627
1870
|
this.ApplicationLogo = null;
|
|
1628
1871
|
|
|
1629
1872
|
/**
|
|
1630
|
-
* Team ID
|
|
1873
|
+
* <p>Team ID.</p>
|
|
1631
1874
|
* @type {string || null}
|
|
1632
1875
|
*/
|
|
1633
1876
|
this.TeamId = null;
|
|
1634
1877
|
|
|
1635
1878
|
/**
|
|
1636
|
-
* Team name
|
|
1879
|
+
* <p>Team name.</p>
|
|
1637
1880
|
* @type {string || null}
|
|
1638
1881
|
*/
|
|
1639
1882
|
this.TeamName = null;
|
|
1640
1883
|
|
|
1641
1884
|
/**
|
|
1642
|
-
* Mini program approval QR code URL
|
|
1885
|
+
* <p>Mini program approval QR code URL.</p>
|
|
1643
1886
|
* @type {string || null}
|
|
1644
1887
|
*/
|
|
1645
1888
|
this.MNPQrCodeUrl = null;
|
|
1646
1889
|
|
|
1647
1890
|
/**
|
|
1648
|
-
* Mini program category
|
|
1891
|
+
* <p>Mini program category.</p>
|
|
1649
1892
|
* @type {string || null}
|
|
1650
1893
|
*/
|
|
1651
1894
|
this.MNPType = null;
|
|
1652
1895
|
|
|
1653
1896
|
/**
|
|
1654
|
-
* Approver
|
|
1897
|
+
* <p>Approver.</p>
|
|
1655
1898
|
* @type {string || null}
|
|
1656
1899
|
*/
|
|
1657
1900
|
this.ApprovalUser = null;
|
|
1658
1901
|
|
|
1659
1902
|
/**
|
|
1660
|
-
* Approval time
|
|
1903
|
+
* <p>Approval time.</p>
|
|
1661
1904
|
* @type {string || null}
|
|
1662
1905
|
*/
|
|
1663
1906
|
this.ApprovalTime = null;
|
|
1664
1907
|
|
|
1665
1908
|
/**
|
|
1666
|
-
* Approval note
|
|
1909
|
+
* <p>Approval note.</p>
|
|
1667
1910
|
* @type {string || null}
|
|
1668
1911
|
*/
|
|
1669
1912
|
this.ApprovalNote = null;
|
|
1670
1913
|
|
|
1914
|
+
/**
|
|
1915
|
+
* <p>Age rating information.</p>
|
|
1916
|
+
* @type {Array.<AgeRatingItem> || null}
|
|
1917
|
+
*/
|
|
1918
|
+
this.AgeRatings = null;
|
|
1919
|
+
|
|
1671
1920
|
}
|
|
1672
1921
|
|
|
1673
1922
|
/**
|
|
@@ -1697,6 +1946,15 @@ class DescribeMNPApprovalListData extends AbstractModel {
|
|
|
1697
1946
|
this.ApprovalTime = 'ApprovalTime' in params ? params.ApprovalTime : null;
|
|
1698
1947
|
this.ApprovalNote = 'ApprovalNote' in params ? params.ApprovalNote : null;
|
|
1699
1948
|
|
|
1949
|
+
if (params.AgeRatings) {
|
|
1950
|
+
this.AgeRatings = new Array();
|
|
1951
|
+
for (let z in params.AgeRatings) {
|
|
1952
|
+
let obj = new AgeRatingItem();
|
|
1953
|
+
obj.deserialize(params.AgeRatings[z]);
|
|
1954
|
+
this.AgeRatings.push(obj);
|
|
1955
|
+
}
|
|
1956
|
+
}
|
|
1957
|
+
|
|
1700
1958
|
}
|
|
1701
1959
|
}
|
|
1702
1960
|
|
|
@@ -2170,27 +2428,67 @@ class DescribeMNPOfflinePackageURLResponse extends AbstractModel {
|
|
|
2170
2428
|
}
|
|
2171
2429
|
|
|
2172
2430
|
/**
|
|
2173
|
-
*
|
|
2431
|
+
* UnbindPaymentMerchant response structure.
|
|
2174
2432
|
* @class
|
|
2175
2433
|
*/
|
|
2176
|
-
class
|
|
2434
|
+
class UnbindPaymentMerchantResponse extends AbstractModel {
|
|
2177
2435
|
constructor(){
|
|
2178
2436
|
super();
|
|
2179
2437
|
|
|
2180
2438
|
/**
|
|
2181
|
-
*
|
|
2182
|
-
* @type {
|
|
2439
|
+
* <p>Response parameters structure for the superapp actively unbinding the merchant account of a mini program team.</p>
|
|
2440
|
+
* @type {BooleanInfo || null}
|
|
2183
2441
|
*/
|
|
2184
|
-
this.
|
|
2442
|
+
this.Data = null;
|
|
2185
2443
|
|
|
2186
2444
|
/**
|
|
2187
|
-
*
|
|
2445
|
+
* 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.
|
|
2188
2446
|
* @type {string || null}
|
|
2189
2447
|
*/
|
|
2190
|
-
this.
|
|
2448
|
+
this.RequestId = null;
|
|
2191
2449
|
|
|
2192
|
-
|
|
2193
|
-
|
|
2450
|
+
}
|
|
2451
|
+
|
|
2452
|
+
/**
|
|
2453
|
+
* @private
|
|
2454
|
+
*/
|
|
2455
|
+
deserialize(params) {
|
|
2456
|
+
if (!params) {
|
|
2457
|
+
return;
|
|
2458
|
+
}
|
|
2459
|
+
|
|
2460
|
+
if (params.Data) {
|
|
2461
|
+
let obj = new BooleanInfo();
|
|
2462
|
+
obj.deserialize(params.Data)
|
|
2463
|
+
this.Data = obj;
|
|
2464
|
+
}
|
|
2465
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
2466
|
+
|
|
2467
|
+
}
|
|
2468
|
+
}
|
|
2469
|
+
|
|
2470
|
+
/**
|
|
2471
|
+
* Superapp configuration infomation.
|
|
2472
|
+
* @class
|
|
2473
|
+
*/
|
|
2474
|
+
class ApplicationConfigInfo extends AbstractModel {
|
|
2475
|
+
constructor(){
|
|
2476
|
+
super();
|
|
2477
|
+
|
|
2478
|
+
/**
|
|
2479
|
+
* Superapp configuration type. Valid values: 1 Non-production; 2 Production.
|
|
2480
|
+
* @type {number || null}
|
|
2481
|
+
*/
|
|
2482
|
+
this.ApplicationType = null;
|
|
2483
|
+
|
|
2484
|
+
/**
|
|
2485
|
+
* Superapp package name.
|
|
2486
|
+
* @type {string || null}
|
|
2487
|
+
*/
|
|
2488
|
+
this.AppKey = null;
|
|
2489
|
+
|
|
2490
|
+
/**
|
|
2491
|
+
* Superapp URL.
|
|
2194
2492
|
* @type {string || null}
|
|
2195
2493
|
*/
|
|
2196
2494
|
this.AppURL = null;
|
|
@@ -2321,6 +2619,55 @@ class DescribeMNGSubscribeMessageTemplateLibraryListRequest extends AbstractMod
|
|
|
2321
2619
|
}
|
|
2322
2620
|
}
|
|
2323
2621
|
|
|
2622
|
+
/**
|
|
2623
|
+
* Response parameters structure for querying bound merchant accounts of a mini program team.
|
|
2624
|
+
* @class
|
|
2625
|
+
*/
|
|
2626
|
+
class DescribeMNPTeamMerchantInfoRes extends AbstractModel {
|
|
2627
|
+
constructor(){
|
|
2628
|
+
super();
|
|
2629
|
+
|
|
2630
|
+
/**
|
|
2631
|
+
* <p>Merchant ID.</p>
|
|
2632
|
+
* @type {string || null}
|
|
2633
|
+
*/
|
|
2634
|
+
this.MerchantID = null;
|
|
2635
|
+
|
|
2636
|
+
/**
|
|
2637
|
+
* <p>Approval status. Valid values: 0: In progress; 10: Approved; 20: Rejected.</p>
|
|
2638
|
+
* @type {number || null}
|
|
2639
|
+
*/
|
|
2640
|
+
this.ApprovalStatus = null;
|
|
2641
|
+
|
|
2642
|
+
/**
|
|
2643
|
+
* <p>Merchant binding ID of the mini program team, used to unbind the merchant.</p>
|
|
2644
|
+
* @type {string || null}
|
|
2645
|
+
*/
|
|
2646
|
+
this.ID = null;
|
|
2647
|
+
|
|
2648
|
+
/**
|
|
2649
|
+
* <p>Merchant name.</p>
|
|
2650
|
+
* @type {string || null}
|
|
2651
|
+
*/
|
|
2652
|
+
this.MerchantName = null;
|
|
2653
|
+
|
|
2654
|
+
}
|
|
2655
|
+
|
|
2656
|
+
/**
|
|
2657
|
+
* @private
|
|
2658
|
+
*/
|
|
2659
|
+
deserialize(params) {
|
|
2660
|
+
if (!params) {
|
|
2661
|
+
return;
|
|
2662
|
+
}
|
|
2663
|
+
this.MerchantID = 'MerchantID' in params ? params.MerchantID : null;
|
|
2664
|
+
this.ApprovalStatus = 'ApprovalStatus' in params ? params.ApprovalStatus : null;
|
|
2665
|
+
this.ID = 'ID' in params ? params.ID : null;
|
|
2666
|
+
this.MerchantName = 'MerchantName' in params ? params.MerchantName : null;
|
|
2667
|
+
|
|
2668
|
+
}
|
|
2669
|
+
}
|
|
2670
|
+
|
|
2324
2671
|
/**
|
|
2325
2672
|
* DescribeApplicationMNPList request structure.
|
|
2326
2673
|
* @class
|
|
@@ -2406,17 +2753,16 @@ class DescribeApplicationMNPListRequest extends AbstractModel {
|
|
|
2406
2753
|
}
|
|
2407
2754
|
|
|
2408
2755
|
/**
|
|
2409
|
-
*
|
|
2756
|
+
* DescribeMNGReleasedVersionHistory response structure.
|
|
2410
2757
|
* @class
|
|
2411
2758
|
*/
|
|
2412
|
-
class
|
|
2759
|
+
class DescribeMNGReleasedVersionHistoryResponse extends AbstractModel {
|
|
2413
2760
|
constructor(){
|
|
2414
2761
|
super();
|
|
2415
2762
|
|
|
2416
2763
|
/**
|
|
2417
|
-
*
|
|
2418
|
-
|
|
2419
|
-
* @type {Array.<ReportDataResult> || null}
|
|
2764
|
+
* <p>Response data.</p>
|
|
2765
|
+
* @type {DescribeMNGRevertOnlineVersionPageResp || null}
|
|
2420
2766
|
*/
|
|
2421
2767
|
this.Data = null;
|
|
2422
2768
|
|
|
@@ -2437,12 +2783,9 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
2437
2783
|
}
|
|
2438
2784
|
|
|
2439
2785
|
if (params.Data) {
|
|
2440
|
-
|
|
2441
|
-
|
|
2442
|
-
|
|
2443
|
-
obj.deserialize(params.Data[z]);
|
|
2444
|
-
this.Data.push(obj);
|
|
2445
|
-
}
|
|
2786
|
+
let obj = new DescribeMNGRevertOnlineVersionPageResp();
|
|
2787
|
+
obj.deserialize(params.Data)
|
|
2788
|
+
this.Data = obj;
|
|
2446
2789
|
}
|
|
2447
2790
|
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
2448
2791
|
|
|
@@ -2450,24 +2793,24 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
2450
2793
|
}
|
|
2451
2794
|
|
|
2452
2795
|
/**
|
|
2453
|
-
*
|
|
2796
|
+
* DescribeMNGAllStageVersions request structure.
|
|
2454
2797
|
* @class
|
|
2455
2798
|
*/
|
|
2456
|
-
class
|
|
2799
|
+
class DescribeMNGAllStageVersionsRequest extends AbstractModel {
|
|
2457
2800
|
constructor(){
|
|
2458
2801
|
super();
|
|
2459
2802
|
|
|
2460
2803
|
/**
|
|
2461
|
-
* <p>
|
|
2462
|
-
* @type {
|
|
2804
|
+
* <p>Mini game appid.</p>
|
|
2805
|
+
* @type {string || null}
|
|
2463
2806
|
*/
|
|
2464
|
-
this.
|
|
2807
|
+
this.MNPId = null;
|
|
2465
2808
|
|
|
2466
2809
|
/**
|
|
2467
|
-
*
|
|
2810
|
+
* <p>Platform ID.</p>
|
|
2468
2811
|
* @type {string || null}
|
|
2469
2812
|
*/
|
|
2470
|
-
this.
|
|
2813
|
+
this.PlatformId = null;
|
|
2471
2814
|
|
|
2472
2815
|
}
|
|
2473
2816
|
|
|
@@ -2478,13 +2821,8 @@ class DescribeMNGReleasedVersionHistoryResponse extends AbstractModel {
|
|
|
2478
2821
|
if (!params) {
|
|
2479
2822
|
return;
|
|
2480
2823
|
}
|
|
2481
|
-
|
|
2482
|
-
|
|
2483
|
-
let obj = new DescribeMNGRevertOnlineVersionPageResp();
|
|
2484
|
-
obj.deserialize(params.Data)
|
|
2485
|
-
this.Data = obj;
|
|
2486
|
-
}
|
|
2487
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
2824
|
+
this.MNPId = 'MNPId' in params ? params.MNPId : null;
|
|
2825
|
+
this.PlatformId = 'PlatformId' in params ? params.PlatformId : null;
|
|
2488
2826
|
|
|
2489
2827
|
}
|
|
2490
2828
|
}
|
|
@@ -2533,6 +2871,46 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
2533
2871
|
}
|
|
2534
2872
|
}
|
|
2535
2873
|
|
|
2874
|
+
/**
|
|
2875
|
+
* ChangePaymentBoundMerchant response structure.
|
|
2876
|
+
* @class
|
|
2877
|
+
*/
|
|
2878
|
+
class ChangePaymentBoundMerchantResponse extends AbstractModel {
|
|
2879
|
+
constructor(){
|
|
2880
|
+
super();
|
|
2881
|
+
|
|
2882
|
+
/**
|
|
2883
|
+
* <p>Response parameters structure for changing the bound payment merchant. The returned approval number is required when calling the approval API.</p>
|
|
2884
|
+
* @type {ChangePaymentV2BindMerchantRes || null}
|
|
2885
|
+
*/
|
|
2886
|
+
this.Data = null;
|
|
2887
|
+
|
|
2888
|
+
/**
|
|
2889
|
+
* 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.
|
|
2890
|
+
* @type {string || null}
|
|
2891
|
+
*/
|
|
2892
|
+
this.RequestId = null;
|
|
2893
|
+
|
|
2894
|
+
}
|
|
2895
|
+
|
|
2896
|
+
/**
|
|
2897
|
+
* @private
|
|
2898
|
+
*/
|
|
2899
|
+
deserialize(params) {
|
|
2900
|
+
if (!params) {
|
|
2901
|
+
return;
|
|
2902
|
+
}
|
|
2903
|
+
|
|
2904
|
+
if (params.Data) {
|
|
2905
|
+
let obj = new ChangePaymentV2BindMerchantRes();
|
|
2906
|
+
obj.deserialize(params.Data)
|
|
2907
|
+
this.Data = obj;
|
|
2908
|
+
}
|
|
2909
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
2910
|
+
|
|
2911
|
+
}
|
|
2912
|
+
}
|
|
2913
|
+
|
|
2536
2914
|
/**
|
|
2537
2915
|
* Mini program subscription message template list
|
|
2538
2916
|
* @class
|
|
@@ -2821,13 +3199,13 @@ class CreateMNPSecretKeyRequest extends AbstractModel {
|
|
|
2821
3199
|
this.PlatformId = null;
|
|
2822
3200
|
|
|
2823
3201
|
/**
|
|
2824
|
-
* <p>Mini program appid.</p>
|
|
3202
|
+
* <p>Mini program or mini game appid.</p>
|
|
2825
3203
|
* @type {string || null}
|
|
2826
3204
|
*/
|
|
2827
3205
|
this.MNPId = null;
|
|
2828
3206
|
|
|
2829
3207
|
/**
|
|
2830
|
-
* <p>
|
|
3208
|
+
* <p>CICD ID</p>
|
|
2831
3209
|
* @type {string || null}
|
|
2832
3210
|
*/
|
|
2833
3211
|
this.PipelineId = null;
|
|
@@ -3505,41 +3883,6 @@ class MNPI18NSyncDto extends AbstractModel {
|
|
|
3505
3883
|
}
|
|
3506
3884
|
}
|
|
3507
3885
|
|
|
3508
|
-
/**
|
|
3509
|
-
* Request parameters for creating a domain.
|
|
3510
|
-
* @class
|
|
3511
|
-
*/
|
|
3512
|
-
class CreateDomainParam extends AbstractModel {
|
|
3513
|
-
constructor(){
|
|
3514
|
-
super();
|
|
3515
|
-
|
|
3516
|
-
/**
|
|
3517
|
-
* Array of domain URLs.
|
|
3518
|
-
* @type {Array.<string> || null}
|
|
3519
|
-
*/
|
|
3520
|
-
this.DomainUrlList = null;
|
|
3521
|
-
|
|
3522
|
-
/**
|
|
3523
|
-
* Domain type. Valid values: 1: Request domain; 2: Business domain; 3: Socket domain; 4: File upload; 5: File download.
|
|
3524
|
-
* @type {number || null}
|
|
3525
|
-
*/
|
|
3526
|
-
this.DomainType = null;
|
|
3527
|
-
|
|
3528
|
-
}
|
|
3529
|
-
|
|
3530
|
-
/**
|
|
3531
|
-
* @private
|
|
3532
|
-
*/
|
|
3533
|
-
deserialize(params) {
|
|
3534
|
-
if (!params) {
|
|
3535
|
-
return;
|
|
3536
|
-
}
|
|
3537
|
-
this.DomainUrlList = 'DomainUrlList' in params ? params.DomainUrlList : null;
|
|
3538
|
-
this.DomainType = 'DomainType' in params ? params.DomainType : null;
|
|
3539
|
-
|
|
3540
|
-
}
|
|
3541
|
-
}
|
|
3542
|
-
|
|
3543
3886
|
/**
|
|
3544
3887
|
* DescribeMNPSensitiveAPIPermissionList response structure.
|
|
3545
3888
|
* @class
|
|
@@ -3625,24 +3968,24 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
3625
3968
|
}
|
|
3626
3969
|
|
|
3627
3970
|
/**
|
|
3628
|
-
*
|
|
3971
|
+
* Request parameters for creating a domain.
|
|
3629
3972
|
* @class
|
|
3630
3973
|
*/
|
|
3631
|
-
class
|
|
3974
|
+
class CreateDomainParam extends AbstractModel {
|
|
3632
3975
|
constructor(){
|
|
3633
3976
|
super();
|
|
3634
3977
|
|
|
3635
3978
|
/**
|
|
3636
|
-
*
|
|
3637
|
-
* @type {
|
|
3979
|
+
* Array of domain URLs.
|
|
3980
|
+
* @type {Array.<string> || null}
|
|
3638
3981
|
*/
|
|
3639
|
-
this.
|
|
3982
|
+
this.DomainUrlList = null;
|
|
3640
3983
|
|
|
3641
3984
|
/**
|
|
3642
|
-
*
|
|
3643
|
-
* @type {
|
|
3985
|
+
* Domain type. Valid values: 1: Request domain; 2: Business domain; 3: Socket domain; 4: File upload; 5: File download.
|
|
3986
|
+
* @type {number || null}
|
|
3644
3987
|
*/
|
|
3645
|
-
this.
|
|
3988
|
+
this.DomainType = null;
|
|
3646
3989
|
|
|
3647
3990
|
}
|
|
3648
3991
|
|
|
@@ -3653,16 +3996,8 @@ class DescribeMNPApprovalListResp extends AbstractModel {
|
|
|
3653
3996
|
if (!params) {
|
|
3654
3997
|
return;
|
|
3655
3998
|
}
|
|
3656
|
-
this.
|
|
3657
|
-
|
|
3658
|
-
if (params.DataList) {
|
|
3659
|
-
this.DataList = new Array();
|
|
3660
|
-
for (let z in params.DataList) {
|
|
3661
|
-
let obj = new DescribeMNPApprovalListData();
|
|
3662
|
-
obj.deserialize(params.DataList[z]);
|
|
3663
|
-
this.DataList.push(obj);
|
|
3664
|
-
}
|
|
3665
|
-
}
|
|
3999
|
+
this.DomainUrlList = 'DomainUrlList' in params ? params.DomainUrlList : null;
|
|
4000
|
+
this.DomainType = 'DomainType' in params ? params.DomainType : null;
|
|
3666
4001
|
|
|
3667
4002
|
}
|
|
3668
4003
|
}
|
|
@@ -4134,6 +4469,12 @@ class DescribeMNGAllStageVersionsResp extends AbstractModel {
|
|
|
4134
4469
|
*/
|
|
4135
4470
|
this.VersionCurrentStatus = null;
|
|
4136
4471
|
|
|
4472
|
+
/**
|
|
4473
|
+
* <p>Age rating information.</p>
|
|
4474
|
+
* @type {Array.<AgeRatingItem> || null}
|
|
4475
|
+
*/
|
|
4476
|
+
this.AgeRatings = null;
|
|
4477
|
+
|
|
4137
4478
|
}
|
|
4138
4479
|
|
|
4139
4480
|
/**
|
|
@@ -4162,6 +4503,15 @@ class DescribeMNGAllStageVersionsResp extends AbstractModel {
|
|
|
4162
4503
|
this.Status = 'Status' in params ? params.Status : null;
|
|
4163
4504
|
this.VersionCurrentStatus = 'VersionCurrentStatus' in params ? params.VersionCurrentStatus : null;
|
|
4164
4505
|
|
|
4506
|
+
if (params.AgeRatings) {
|
|
4507
|
+
this.AgeRatings = new Array();
|
|
4508
|
+
for (let z in params.AgeRatings) {
|
|
4509
|
+
let obj = new AgeRatingItem();
|
|
4510
|
+
obj.deserialize(params.AgeRatings[z]);
|
|
4511
|
+
this.AgeRatings.push(obj);
|
|
4512
|
+
}
|
|
4513
|
+
}
|
|
4514
|
+
|
|
4165
4515
|
}
|
|
4166
4516
|
}
|
|
4167
4517
|
|
|
@@ -4553,6 +4903,12 @@ class ModifyMNGRequest extends AbstractModel {
|
|
|
4553
4903
|
*/
|
|
4554
4904
|
this.I18nList = null;
|
|
4555
4905
|
|
|
4906
|
+
/**
|
|
4907
|
+
* <p>Age rating information.</p>
|
|
4908
|
+
* @type {Array.<AgeRatingItemReq> || null}
|
|
4909
|
+
*/
|
|
4910
|
+
this.AgeRatings = null;
|
|
4911
|
+
|
|
4556
4912
|
}
|
|
4557
4913
|
|
|
4558
4914
|
/**
|
|
@@ -4579,6 +4935,15 @@ class ModifyMNGRequest extends AbstractModel {
|
|
|
4579
4935
|
}
|
|
4580
4936
|
}
|
|
4581
4937
|
|
|
4938
|
+
if (params.AgeRatings) {
|
|
4939
|
+
this.AgeRatings = new Array();
|
|
4940
|
+
for (let z in params.AgeRatings) {
|
|
4941
|
+
let obj = new AgeRatingItemReq();
|
|
4942
|
+
obj.deserialize(params.AgeRatings[z]);
|
|
4943
|
+
this.AgeRatings.push(obj);
|
|
4944
|
+
}
|
|
4945
|
+
}
|
|
4946
|
+
|
|
4582
4947
|
}
|
|
4583
4948
|
}
|
|
4584
4949
|
|
|
@@ -5212,31 +5577,13 @@ class CreateMNPApprovalRequest extends AbstractModel {
|
|
|
5212
5577
|
}
|
|
5213
5578
|
|
|
5214
5579
|
/**
|
|
5215
|
-
*
|
|
5580
|
+
* ApprovePaymentMerchantBinding request structure.
|
|
5216
5581
|
* @class
|
|
5217
5582
|
*/
|
|
5218
|
-
class
|
|
5583
|
+
class ApprovePaymentMerchantBindingRequest extends AbstractModel {
|
|
5219
5584
|
constructor(){
|
|
5220
5585
|
super();
|
|
5221
5586
|
|
|
5222
|
-
/**
|
|
5223
|
-
* <p>Pagination offset.</p>
|
|
5224
|
-
* @type {number || null}
|
|
5225
|
-
*/
|
|
5226
|
-
this.Offset = null;
|
|
5227
|
-
|
|
5228
|
-
/**
|
|
5229
|
-
* <p>Number of entries per page.</p>
|
|
5230
|
-
* @type {number || null}
|
|
5231
|
-
*/
|
|
5232
|
-
this.Limit = null;
|
|
5233
|
-
|
|
5234
|
-
/**
|
|
5235
|
-
* <p>Mini game appid.</p>
|
|
5236
|
-
* @type {string || null}
|
|
5237
|
-
*/
|
|
5238
|
-
this.MNPId = null;
|
|
5239
|
-
|
|
5240
5587
|
/**
|
|
5241
5588
|
* <p>Platform ID.</p>
|
|
5242
5589
|
* @type {string || null}
|
|
@@ -5250,7 +5597,116 @@ class DescribeMNGSensitiveAPIPermissionListRequest extends AbstractModel {
|
|
|
5250
5597
|
this.ApplicationId = null;
|
|
5251
5598
|
|
|
5252
5599
|
/**
|
|
5253
|
-
* <p>
|
|
5600
|
+
* <p>Approval number.</p>
|
|
5601
|
+
* @type {string || null}
|
|
5602
|
+
*/
|
|
5603
|
+
this.ApprovalNo = null;
|
|
5604
|
+
|
|
5605
|
+
/**
|
|
5606
|
+
* <p>Approval status. Valid values: 10: Approved; 20: Rejected.</p>
|
|
5607
|
+
* @type {number || null}
|
|
5608
|
+
*/
|
|
5609
|
+
this.ApprovalType = null;
|
|
5610
|
+
|
|
5611
|
+
/**
|
|
5612
|
+
* <p>Approval note.</p>
|
|
5613
|
+
* @type {string || null}
|
|
5614
|
+
*/
|
|
5615
|
+
this.ApprovalNote = null;
|
|
5616
|
+
|
|
5617
|
+
}
|
|
5618
|
+
|
|
5619
|
+
/**
|
|
5620
|
+
* @private
|
|
5621
|
+
*/
|
|
5622
|
+
deserialize(params) {
|
|
5623
|
+
if (!params) {
|
|
5624
|
+
return;
|
|
5625
|
+
}
|
|
5626
|
+
this.PlatformId = 'PlatformId' in params ? params.PlatformId : null;
|
|
5627
|
+
this.ApplicationId = 'ApplicationId' in params ? params.ApplicationId : null;
|
|
5628
|
+
this.ApprovalNo = 'ApprovalNo' in params ? params.ApprovalNo : null;
|
|
5629
|
+
this.ApprovalType = 'ApprovalType' in params ? params.ApprovalType : null;
|
|
5630
|
+
this.ApprovalNote = 'ApprovalNote' in params ? params.ApprovalNote : null;
|
|
5631
|
+
|
|
5632
|
+
}
|
|
5633
|
+
}
|
|
5634
|
+
|
|
5635
|
+
/**
|
|
5636
|
+
* Response parameters structure for the superapp approving the merchant binding of a mini program team.
|
|
5637
|
+
* @class
|
|
5638
|
+
*/
|
|
5639
|
+
class ApprovalPaymentV2MerchantBindRes extends AbstractModel {
|
|
5640
|
+
constructor(){
|
|
5641
|
+
super();
|
|
5642
|
+
|
|
5643
|
+
/**
|
|
5644
|
+
* <p>API response result. A value of true indicates that the operation succeeded.</p>
|
|
5645
|
+
* @type {boolean || null}
|
|
5646
|
+
*/
|
|
5647
|
+
this.Result = null;
|
|
5648
|
+
|
|
5649
|
+
/**
|
|
5650
|
+
* <p>The unique merchant binding ID of the mini program team, used for the superapp to unbind the merchant.</p>
|
|
5651
|
+
* @type {number || null}
|
|
5652
|
+
*/
|
|
5653
|
+
this.ID = null;
|
|
5654
|
+
|
|
5655
|
+
}
|
|
5656
|
+
|
|
5657
|
+
/**
|
|
5658
|
+
* @private
|
|
5659
|
+
*/
|
|
5660
|
+
deserialize(params) {
|
|
5661
|
+
if (!params) {
|
|
5662
|
+
return;
|
|
5663
|
+
}
|
|
5664
|
+
this.Result = 'Result' in params ? params.Result : null;
|
|
5665
|
+
this.ID = 'ID' in params ? params.ID : null;
|
|
5666
|
+
|
|
5667
|
+
}
|
|
5668
|
+
}
|
|
5669
|
+
|
|
5670
|
+
/**
|
|
5671
|
+
* DescribeMNGSensitiveAPIPermissionList request structure.
|
|
5672
|
+
* @class
|
|
5673
|
+
*/
|
|
5674
|
+
class DescribeMNGSensitiveAPIPermissionListRequest extends AbstractModel {
|
|
5675
|
+
constructor(){
|
|
5676
|
+
super();
|
|
5677
|
+
|
|
5678
|
+
/**
|
|
5679
|
+
* <p>Pagination offset.</p>
|
|
5680
|
+
* @type {number || null}
|
|
5681
|
+
*/
|
|
5682
|
+
this.Offset = null;
|
|
5683
|
+
|
|
5684
|
+
/**
|
|
5685
|
+
* <p>Number of entries per page.</p>
|
|
5686
|
+
* @type {number || null}
|
|
5687
|
+
*/
|
|
5688
|
+
this.Limit = null;
|
|
5689
|
+
|
|
5690
|
+
/**
|
|
5691
|
+
* <p>Mini game appid.</p>
|
|
5692
|
+
* @type {string || null}
|
|
5693
|
+
*/
|
|
5694
|
+
this.MNPId = null;
|
|
5695
|
+
|
|
5696
|
+
/**
|
|
5697
|
+
* <p>Platform ID.</p>
|
|
5698
|
+
* @type {string || null}
|
|
5699
|
+
*/
|
|
5700
|
+
this.PlatformId = null;
|
|
5701
|
+
|
|
5702
|
+
/**
|
|
5703
|
+
* <p>Superapp ID.</p>
|
|
5704
|
+
* @type {string || null}
|
|
5705
|
+
*/
|
|
5706
|
+
this.ApplicationId = null;
|
|
5707
|
+
|
|
5708
|
+
/**
|
|
5709
|
+
* <p>Search keyword (API name).</p>
|
|
5254
5710
|
* @type {string || null}
|
|
5255
5711
|
*/
|
|
5256
5712
|
this.Keyword = null;
|
|
@@ -5738,13 +6194,13 @@ class CreateMNGVersionRequest extends AbstractModel {
|
|
|
5738
6194
|
this.MNPVersionIntro = null;
|
|
5739
6195
|
|
|
5740
6196
|
/**
|
|
5741
|
-
* <p>Version type. Valid values: 1: Debug; 2: Development
|
|
6197
|
+
* <p>Version type. Valid values: 1: Debug version; 2: Development version.</p> Default value: 2.</p>
|
|
5742
6198
|
* @type {number || null}
|
|
5743
6199
|
*/
|
|
5744
6200
|
this.VersionType = null;
|
|
5745
6201
|
|
|
5746
6202
|
/**
|
|
5747
|
-
* <p>Compilation
|
|
6203
|
+
* <p>Compilation conditions.</p>
|
|
5748
6204
|
* @type {string || null}
|
|
5749
6205
|
*/
|
|
5750
6206
|
this.CompileCondition = null;
|
|
@@ -5756,7 +6212,7 @@ class CreateMNGVersionRequest extends AbstractModel {
|
|
|
5756
6212
|
this.CompileConfig = null;
|
|
5757
6213
|
|
|
5758
6214
|
/**
|
|
5759
|
-
* <p>
|
|
6215
|
+
* <p>CICD ID</p>
|
|
5760
6216
|
* @type {string || null}
|
|
5761
6217
|
*/
|
|
5762
6218
|
this.PipelineId = null;
|
|
@@ -6339,60 +6795,60 @@ class ModifyGlobalDomainResponse extends AbstractModel {
|
|
|
6339
6795
|
}
|
|
6340
6796
|
|
|
6341
6797
|
/**
|
|
6342
|
-
*
|
|
6798
|
+
* MAU detailed data.
|
|
6343
6799
|
* @class
|
|
6344
6800
|
*/
|
|
6345
|
-
class
|
|
6801
|
+
class MAUDetailData extends AbstractModel {
|
|
6346
6802
|
constructor(){
|
|
6347
6803
|
super();
|
|
6348
6804
|
|
|
6349
6805
|
/**
|
|
6350
|
-
*
|
|
6351
|
-
* @type {
|
|
6806
|
+
* Date.
|
|
6807
|
+
* @type {string || null}
|
|
6352
6808
|
*/
|
|
6353
|
-
this.
|
|
6809
|
+
this.DataTime = null;
|
|
6354
6810
|
|
|
6355
6811
|
/**
|
|
6356
|
-
*
|
|
6357
|
-
* @type {
|
|
6812
|
+
* Mini program name.
|
|
6813
|
+
* @type {string || null}
|
|
6358
6814
|
*/
|
|
6359
|
-
this.
|
|
6815
|
+
this.MNPName = null;
|
|
6360
6816
|
|
|
6361
6817
|
/**
|
|
6362
|
-
*
|
|
6818
|
+
* Mini program category.
|
|
6363
6819
|
* @type {string || null}
|
|
6364
6820
|
*/
|
|
6365
|
-
this.
|
|
6821
|
+
this.MNPType = null;
|
|
6366
6822
|
|
|
6367
6823
|
/**
|
|
6368
|
-
*
|
|
6369
|
-
* @type {
|
|
6824
|
+
* Estimated revenue.
|
|
6825
|
+
* @type {string || null}
|
|
6370
6826
|
*/
|
|
6371
|
-
this.
|
|
6827
|
+
this.EstimatedEarnings = null;
|
|
6372
6828
|
|
|
6373
6829
|
/**
|
|
6374
|
-
* Number of
|
|
6830
|
+
* Number of requests.
|
|
6375
6831
|
* @type {number || null}
|
|
6376
6832
|
*/
|
|
6377
|
-
this.
|
|
6833
|
+
this.RequestsNumber = null;
|
|
6378
6834
|
|
|
6379
6835
|
/**
|
|
6380
|
-
* Number of
|
|
6836
|
+
* Number of impressions.
|
|
6381
6837
|
* @type {number || null}
|
|
6382
6838
|
*/
|
|
6383
|
-
this.
|
|
6839
|
+
this.Impressions = null;
|
|
6384
6840
|
|
|
6385
6841
|
/**
|
|
6386
|
-
*
|
|
6387
|
-
* @type {
|
|
6842
|
+
* eCPM (effective cost per mille).
|
|
6843
|
+
* @type {string || null}
|
|
6388
6844
|
*/
|
|
6389
|
-
this.
|
|
6845
|
+
this.ECPM = null;
|
|
6390
6846
|
|
|
6391
6847
|
/**
|
|
6392
|
-
* Number of
|
|
6848
|
+
* Number of taps.
|
|
6393
6849
|
* @type {number || null}
|
|
6394
6850
|
*/
|
|
6395
|
-
this.
|
|
6851
|
+
this.ClicksNumber = null;
|
|
6396
6852
|
|
|
6397
6853
|
}
|
|
6398
6854
|
|
|
@@ -6403,14 +6859,14 @@ class Overview extends AbstractModel {
|
|
|
6403
6859
|
if (!params) {
|
|
6404
6860
|
return;
|
|
6405
6861
|
}
|
|
6406
|
-
this.
|
|
6407
|
-
this.
|
|
6408
|
-
this.
|
|
6409
|
-
this.
|
|
6410
|
-
this.
|
|
6411
|
-
this.
|
|
6412
|
-
this.
|
|
6413
|
-
this.
|
|
6862
|
+
this.DataTime = 'DataTime' in params ? params.DataTime : null;
|
|
6863
|
+
this.MNPName = 'MNPName' in params ? params.MNPName : null;
|
|
6864
|
+
this.MNPType = 'MNPType' in params ? params.MNPType : null;
|
|
6865
|
+
this.EstimatedEarnings = 'EstimatedEarnings' in params ? params.EstimatedEarnings : null;
|
|
6866
|
+
this.RequestsNumber = 'RequestsNumber' in params ? params.RequestsNumber : null;
|
|
6867
|
+
this.Impressions = 'Impressions' in params ? params.Impressions : null;
|
|
6868
|
+
this.ECPM = 'ECPM' in params ? params.ECPM : null;
|
|
6869
|
+
this.ClicksNumber = 'ClicksNumber' in params ? params.ClicksNumber : null;
|
|
6414
6870
|
|
|
6415
6871
|
}
|
|
6416
6872
|
}
|
|
@@ -6856,107 +7312,113 @@ class DescribeMNPListData extends AbstractModel {
|
|
|
6856
7312
|
super();
|
|
6857
7313
|
|
|
6858
7314
|
/**
|
|
6859
|
-
* Mini
|
|
7315
|
+
* <p>Mini game appid.</p>
|
|
6860
7316
|
* @type {string || null}
|
|
6861
7317
|
*/
|
|
6862
7318
|
this.MNPId = null;
|
|
6863
7319
|
|
|
6864
7320
|
/**
|
|
6865
|
-
* Mini
|
|
7321
|
+
* <p>Mini game icon.</p>
|
|
6866
7322
|
* @type {string || null}
|
|
6867
7323
|
*/
|
|
6868
7324
|
this.MNPIcon = null;
|
|
6869
7325
|
|
|
6870
7326
|
/**
|
|
6871
|
-
* Mini
|
|
7327
|
+
* <p>Mini game name.</p>
|
|
6872
7328
|
* @type {string || null}
|
|
6873
7329
|
*/
|
|
6874
7330
|
this.MNPName = null;
|
|
6875
7331
|
|
|
6876
7332
|
/**
|
|
6877
|
-
* Team name
|
|
7333
|
+
* <p>Team name.</p>
|
|
6878
7334
|
* @type {string || null}
|
|
6879
7335
|
*/
|
|
6880
7336
|
this.TeamName = null;
|
|
6881
7337
|
|
|
6882
7338
|
/**
|
|
6883
|
-
* Mini
|
|
7339
|
+
* <p>Mini game category.</p>
|
|
6884
7340
|
* @type {string || null}
|
|
6885
7341
|
*/
|
|
6886
7342
|
this.MNPType = null;
|
|
6887
7343
|
|
|
6888
7344
|
/**
|
|
6889
|
-
* Mini
|
|
7345
|
+
* <p>Mini game available status. Valid values: 1: Available; 2: Not available.</p>
|
|
6890
7346
|
* @type {number || null}
|
|
6891
7347
|
*/
|
|
6892
7348
|
this.Status = null;
|
|
6893
7349
|
|
|
6894
7350
|
/**
|
|
6895
|
-
* Mini
|
|
7351
|
+
* <p>Mini game introduction.</p>
|
|
6896
7352
|
* @type {string || null}
|
|
6897
7353
|
*/
|
|
6898
7354
|
this.MNPIntro = null;
|
|
6899
7355
|
|
|
6900
7356
|
/**
|
|
6901
|
-
* Creator
|
|
7357
|
+
* <p>Creator.</p>
|
|
6902
7358
|
* @type {string || null}
|
|
6903
7359
|
*/
|
|
6904
7360
|
this.CreateUser = null;
|
|
6905
7361
|
|
|
6906
7362
|
/**
|
|
6907
|
-
* Creation time
|
|
7363
|
+
* <p>Creation time.</p>
|
|
6908
7364
|
* @type {string || null}
|
|
6909
7365
|
*/
|
|
6910
7366
|
this.CreateTime = null;
|
|
6911
7367
|
|
|
6912
7368
|
/**
|
|
6913
|
-
* Last modifier
|
|
7369
|
+
* <p>Last modifier.</p>
|
|
6914
7370
|
* @type {string || null}
|
|
6915
7371
|
*/
|
|
6916
7372
|
this.UpdateUser = null;
|
|
6917
7373
|
|
|
6918
7374
|
/**
|
|
6919
|
-
* Last modified time
|
|
7375
|
+
* <p>Last modified time.</p>
|
|
6920
7376
|
* @type {string || null}
|
|
6921
7377
|
*/
|
|
6922
7378
|
this.UpdateTime = null;
|
|
6923
7379
|
|
|
6924
7380
|
/**
|
|
6925
|
-
* Superapp name
|
|
7381
|
+
* <p>Superapp name.</p>
|
|
6926
7382
|
* @type {string || null}
|
|
6927
7383
|
*/
|
|
6928
7384
|
this.ApplicationName = null;
|
|
6929
7385
|
|
|
6930
7386
|
/**
|
|
6931
|
-
* Binding effective status for the superapp. Valid values: 1: Not effective; 2: Effective
|
|
7387
|
+
* <p>Binding effective status for the superapp. Valid values: 1: Not effective; 2: Effective.</p>
|
|
6932
7388
|
* @type {number || null}
|
|
6933
7389
|
*/
|
|
6934
7390
|
this.EffectStatus = null;
|
|
6935
7391
|
|
|
6936
7392
|
/**
|
|
6937
|
-
* Effective mini program version ID bound to the superapp
|
|
7393
|
+
* <p>Effective mini program version ID bound to the superapp.</p>
|
|
6938
7394
|
* @type {number || null}
|
|
6939
7395
|
*/
|
|
6940
7396
|
this.EffectMNPVersionId = null;
|
|
6941
7397
|
|
|
6942
7398
|
/**
|
|
6943
|
-
* Effective mini program version number bound to the superapp
|
|
7399
|
+
* <p>Effective mini program version number bound to the superapp.</p>
|
|
6944
7400
|
* @type {string || null}
|
|
6945
7401
|
*/
|
|
6946
7402
|
this.EffectMNPVersion = null;
|
|
6947
7403
|
|
|
6948
7404
|
/**
|
|
6949
|
-
* Team ID
|
|
7405
|
+
* <p>Team ID.</p>
|
|
6950
7406
|
* @type {string || null}
|
|
6951
7407
|
*/
|
|
6952
7408
|
this.TeamId = null;
|
|
6953
7409
|
|
|
6954
7410
|
/**
|
|
6955
|
-
* Team type ID. Valid values: 1: Mini program team; 2: Superapp team; 3: Service provider team
|
|
7411
|
+
* <p>Team type ID. Valid values: 1: Mini program team; 2: Superapp team; 3: Service provider team.</p>
|
|
6956
7412
|
* @type {number || null}
|
|
6957
7413
|
*/
|
|
6958
7414
|
this.TeamTypeId = null;
|
|
6959
7415
|
|
|
7416
|
+
/**
|
|
7417
|
+
* <p>Age rating information.</p>
|
|
7418
|
+
* @type {Array.<AgeRatingItem> || null}
|
|
7419
|
+
*/
|
|
7420
|
+
this.AgeRatings = null;
|
|
7421
|
+
|
|
6960
7422
|
}
|
|
6961
7423
|
|
|
6962
7424
|
/**
|
|
@@ -6984,6 +7446,15 @@ class DescribeMNPListData extends AbstractModel {
|
|
|
6984
7446
|
this.TeamId = 'TeamId' in params ? params.TeamId : null;
|
|
6985
7447
|
this.TeamTypeId = 'TeamTypeId' in params ? params.TeamTypeId : null;
|
|
6986
7448
|
|
|
7449
|
+
if (params.AgeRatings) {
|
|
7450
|
+
this.AgeRatings = new Array();
|
|
7451
|
+
for (let z in params.AgeRatings) {
|
|
7452
|
+
let obj = new AgeRatingItem();
|
|
7453
|
+
obj.deserialize(params.AgeRatings[z]);
|
|
7454
|
+
this.AgeRatings.push(obj);
|
|
7455
|
+
}
|
|
7456
|
+
}
|
|
7457
|
+
|
|
6987
7458
|
}
|
|
6988
7459
|
}
|
|
6989
7460
|
|
|
@@ -7028,6 +7499,48 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
7028
7499
|
}
|
|
7029
7500
|
}
|
|
7030
7501
|
|
|
7502
|
+
/**
|
|
7503
|
+
* UnbindPaymentMerchant request structure.
|
|
7504
|
+
* @class
|
|
7505
|
+
*/
|
|
7506
|
+
class UnbindPaymentMerchantRequest extends AbstractModel {
|
|
7507
|
+
constructor(){
|
|
7508
|
+
super();
|
|
7509
|
+
|
|
7510
|
+
/**
|
|
7511
|
+
* <p>Platform ID.</p>
|
|
7512
|
+
* @type {string || null}
|
|
7513
|
+
*/
|
|
7514
|
+
this.PlatformId = null;
|
|
7515
|
+
|
|
7516
|
+
/**
|
|
7517
|
+
* <p>Superapp ID.</p>
|
|
7518
|
+
* @type {string || null}
|
|
7519
|
+
*/
|
|
7520
|
+
this.ApplicationId = null;
|
|
7521
|
+
|
|
7522
|
+
/**
|
|
7523
|
+
* <p>Primary key ID, obtained from the API response of approving the merchant binding of a mini program team.</p>
|
|
7524
|
+
* @type {number || null}
|
|
7525
|
+
*/
|
|
7526
|
+
this.ID = null;
|
|
7527
|
+
|
|
7528
|
+
}
|
|
7529
|
+
|
|
7530
|
+
/**
|
|
7531
|
+
* @private
|
|
7532
|
+
*/
|
|
7533
|
+
deserialize(params) {
|
|
7534
|
+
if (!params) {
|
|
7535
|
+
return;
|
|
7536
|
+
}
|
|
7537
|
+
this.PlatformId = 'PlatformId' in params ? params.PlatformId : null;
|
|
7538
|
+
this.ApplicationId = 'ApplicationId' in params ? params.ApplicationId : null;
|
|
7539
|
+
this.ID = 'ID' in params ? params.ID : null;
|
|
7540
|
+
|
|
7541
|
+
}
|
|
7542
|
+
}
|
|
7543
|
+
|
|
7031
7544
|
/**
|
|
7032
7545
|
* ModifyMNPDomain request structure.
|
|
7033
7546
|
* @class
|
|
@@ -7391,16 +7904,16 @@ class ResourceIdInfo extends AbstractModel {
|
|
|
7391
7904
|
}
|
|
7392
7905
|
|
|
7393
7906
|
/**
|
|
7394
|
-
*
|
|
7907
|
+
* DisableMNPPayment response structure.
|
|
7395
7908
|
* @class
|
|
7396
7909
|
*/
|
|
7397
|
-
class
|
|
7910
|
+
class DisableMNPPaymentResponse extends AbstractModel {
|
|
7398
7911
|
constructor(){
|
|
7399
7912
|
super();
|
|
7400
7913
|
|
|
7401
7914
|
/**
|
|
7402
|
-
* <p>Response
|
|
7403
|
-
* @type {
|
|
7915
|
+
* <p>Response parameters structure for disabling mini program payment.</p>
|
|
7916
|
+
* @type {BooleanInfo || null}
|
|
7404
7917
|
*/
|
|
7405
7918
|
this.Data = null;
|
|
7406
7919
|
|
|
@@ -7421,7 +7934,7 @@ class DescribeMNGListResponse extends AbstractModel {
|
|
|
7421
7934
|
}
|
|
7422
7935
|
|
|
7423
7936
|
if (params.Data) {
|
|
7424
|
-
let obj = new
|
|
7937
|
+
let obj = new BooleanInfo();
|
|
7425
7938
|
obj.deserialize(params.Data)
|
|
7426
7939
|
this.Data = obj;
|
|
7427
7940
|
}
|
|
@@ -7431,16 +7944,16 @@ class DescribeMNGListResponse extends AbstractModel {
|
|
|
7431
7944
|
}
|
|
7432
7945
|
|
|
7433
7946
|
/**
|
|
7434
|
-
*
|
|
7947
|
+
* DescribeMNGList response structure.
|
|
7435
7948
|
* @class
|
|
7436
7949
|
*/
|
|
7437
|
-
class
|
|
7950
|
+
class DescribeMNGListResponse extends AbstractModel {
|
|
7438
7951
|
constructor(){
|
|
7439
7952
|
super();
|
|
7440
7953
|
|
|
7441
7954
|
/**
|
|
7442
|
-
* <p>
|
|
7443
|
-
* @type {
|
|
7955
|
+
* <p>Response data.</p>
|
|
7956
|
+
* @type {DescribeMNGListResp || null}
|
|
7444
7957
|
*/
|
|
7445
7958
|
this.Data = null;
|
|
7446
7959
|
|
|
@@ -7461,7 +7974,7 @@ class CreateMNPResponse extends AbstractModel {
|
|
|
7461
7974
|
}
|
|
7462
7975
|
|
|
7463
7976
|
if (params.Data) {
|
|
7464
|
-
let obj = new
|
|
7977
|
+
let obj = new DescribeMNGListResp();
|
|
7465
7978
|
obj.deserialize(params.Data)
|
|
7466
7979
|
this.Data = obj;
|
|
7467
7980
|
}
|
|
@@ -7471,16 +7984,16 @@ class CreateMNPResponse extends AbstractModel {
|
|
|
7471
7984
|
}
|
|
7472
7985
|
|
|
7473
7986
|
/**
|
|
7474
|
-
*
|
|
7987
|
+
* CreateMNP response structure.
|
|
7475
7988
|
* @class
|
|
7476
7989
|
*/
|
|
7477
|
-
class
|
|
7990
|
+
class CreateMNPResponse extends AbstractModel {
|
|
7478
7991
|
constructor(){
|
|
7479
7992
|
super();
|
|
7480
7993
|
|
|
7481
7994
|
/**
|
|
7482
|
-
* <p>
|
|
7483
|
-
* @type {
|
|
7995
|
+
* <p>Returned mini program ID.</p>
|
|
7996
|
+
* @type {ResourceIdStringInfo || null}
|
|
7484
7997
|
*/
|
|
7485
7998
|
this.Data = null;
|
|
7486
7999
|
|
|
@@ -7501,7 +8014,47 @@ class DescribeMNGSensitiveAPIPermissionListResponse extends AbstractModel {
|
|
|
7501
8014
|
}
|
|
7502
8015
|
|
|
7503
8016
|
if (params.Data) {
|
|
7504
|
-
let obj = new
|
|
8017
|
+
let obj = new ResourceIdStringInfo();
|
|
8018
|
+
obj.deserialize(params.Data)
|
|
8019
|
+
this.Data = obj;
|
|
8020
|
+
}
|
|
8021
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
8022
|
+
|
|
8023
|
+
}
|
|
8024
|
+
}
|
|
8025
|
+
|
|
8026
|
+
/**
|
|
8027
|
+
* DescribeMNGSensitiveAPIPermissionList response structure.
|
|
8028
|
+
* @class
|
|
8029
|
+
*/
|
|
8030
|
+
class DescribeMNGSensitiveAPIPermissionListResponse extends AbstractModel {
|
|
8031
|
+
constructor(){
|
|
8032
|
+
super();
|
|
8033
|
+
|
|
8034
|
+
/**
|
|
8035
|
+
* <p>Response data.</p>
|
|
8036
|
+
* @type {DescribeMNGSensitiveAPIPermissionListResp || null}
|
|
8037
|
+
*/
|
|
8038
|
+
this.Data = null;
|
|
8039
|
+
|
|
8040
|
+
/**
|
|
8041
|
+
* 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.
|
|
8042
|
+
* @type {string || null}
|
|
8043
|
+
*/
|
|
8044
|
+
this.RequestId = null;
|
|
8045
|
+
|
|
8046
|
+
}
|
|
8047
|
+
|
|
8048
|
+
/**
|
|
8049
|
+
* @private
|
|
8050
|
+
*/
|
|
8051
|
+
deserialize(params) {
|
|
8052
|
+
if (!params) {
|
|
8053
|
+
return;
|
|
8054
|
+
}
|
|
8055
|
+
|
|
8056
|
+
if (params.Data) {
|
|
8057
|
+
let obj = new DescribeMNGSensitiveAPIPermissionListResp();
|
|
7505
8058
|
obj.deserialize(params.Data)
|
|
7506
8059
|
this.Data = obj;
|
|
7507
8060
|
}
|
|
@@ -7670,24 +8223,24 @@ class DeleteTeamMemberRequest extends AbstractModel {
|
|
|
7670
8223
|
}
|
|
7671
8224
|
|
|
7672
8225
|
/**
|
|
7673
|
-
*
|
|
8226
|
+
* DescribeMNPPaymentApprovalInfo request structure.
|
|
7674
8227
|
* @class
|
|
7675
8228
|
*/
|
|
7676
|
-
class
|
|
8229
|
+
class DescribeMNPPaymentApprovalInfoRequest extends AbstractModel {
|
|
7677
8230
|
constructor(){
|
|
7678
8231
|
super();
|
|
7679
8232
|
|
|
7680
8233
|
/**
|
|
7681
|
-
* <p>
|
|
8234
|
+
* <p>Platform ID.</p>
|
|
7682
8235
|
* @type {string || null}
|
|
7683
8236
|
*/
|
|
7684
|
-
this.
|
|
8237
|
+
this.PlatformId = null;
|
|
7685
8238
|
|
|
7686
8239
|
/**
|
|
7687
|
-
* <p>
|
|
8240
|
+
* <p>Mini program appid.</p>
|
|
7688
8241
|
* @type {string || null}
|
|
7689
8242
|
*/
|
|
7690
|
-
this.
|
|
8243
|
+
this.MNPId = null;
|
|
7691
8244
|
|
|
7692
8245
|
}
|
|
7693
8246
|
|
|
@@ -7698,135 +8251,145 @@ class ResetMNPAppSecretRequest extends AbstractModel {
|
|
|
7698
8251
|
if (!params) {
|
|
7699
8252
|
return;
|
|
7700
8253
|
}
|
|
7701
|
-
this.MNPId = 'MNPId' in params ? params.MNPId : null;
|
|
7702
8254
|
this.PlatformId = 'PlatformId' in params ? params.PlatformId : null;
|
|
8255
|
+
this.MNPId = 'MNPId' in params ? params.MNPId : null;
|
|
7703
8256
|
|
|
7704
8257
|
}
|
|
7705
8258
|
}
|
|
7706
8259
|
|
|
7707
8260
|
/**
|
|
7708
|
-
*
|
|
8261
|
+
* Retention data.
|
|
7709
8262
|
* @class
|
|
7710
8263
|
*/
|
|
7711
|
-
class
|
|
8264
|
+
class RetentionData extends AbstractModel {
|
|
7712
8265
|
constructor(){
|
|
7713
8266
|
super();
|
|
7714
8267
|
|
|
7715
8268
|
/**
|
|
7716
|
-
*
|
|
7717
|
-
|
|
7718
|
-
* @type {Array.<ReportDataResult> || null}
|
|
8269
|
+
* Number of active users.
|
|
8270
|
+
* @type {number || null}
|
|
7719
8271
|
*/
|
|
7720
|
-
this.
|
|
8272
|
+
this.ActiveUserCount = null;
|
|
7721
8273
|
|
|
7722
8274
|
/**
|
|
7723
|
-
*
|
|
7724
|
-
* @type {
|
|
8275
|
+
* Day 1 retention of active users.
|
|
8276
|
+
* @type {number || null}
|
|
7725
8277
|
*/
|
|
7726
|
-
this.
|
|
8278
|
+
this.OneDayRetentionUsers = null;
|
|
7727
8279
|
|
|
7728
|
-
|
|
8280
|
+
/**
|
|
8281
|
+
* Day 2 retention of active users.
|
|
8282
|
+
* @type {number || null}
|
|
8283
|
+
*/
|
|
8284
|
+
this.TwoDayRetentionUsers = null;
|
|
7729
8285
|
|
|
7730
|
-
|
|
7731
|
-
|
|
7732
|
-
|
|
7733
|
-
|
|
7734
|
-
|
|
7735
|
-
return;
|
|
7736
|
-
}
|
|
8286
|
+
/**
|
|
8287
|
+
* Day 3 retention of active users.
|
|
8288
|
+
* @type {number || null}
|
|
8289
|
+
*/
|
|
8290
|
+
this.ThreeDayRetentionUsers = null;
|
|
7737
8291
|
|
|
7738
|
-
|
|
7739
|
-
|
|
7740
|
-
|
|
7741
|
-
|
|
7742
|
-
|
|
7743
|
-
this.Data.push(obj);
|
|
7744
|
-
}
|
|
7745
|
-
}
|
|
7746
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
8292
|
+
/**
|
|
8293
|
+
* Day 4 retention of active users.
|
|
8294
|
+
* @type {number || null}
|
|
8295
|
+
*/
|
|
8296
|
+
this.FourDayRetentionUsers = null;
|
|
7747
8297
|
|
|
7748
|
-
|
|
7749
|
-
|
|
8298
|
+
/**
|
|
8299
|
+
* Day 5 retention of active users.
|
|
8300
|
+
* @type {number || null}
|
|
8301
|
+
*/
|
|
8302
|
+
this.FiveDayRetentionUsers = null;
|
|
7750
8303
|
|
|
7751
|
-
/**
|
|
7752
|
-
|
|
7753
|
-
|
|
7754
|
-
|
|
7755
|
-
|
|
7756
|
-
constructor(){
|
|
7757
|
-
super();
|
|
8304
|
+
/**
|
|
8305
|
+
* Day 6 retention of active users.
|
|
8306
|
+
* @type {number || null}
|
|
8307
|
+
*/
|
|
8308
|
+
this.SixDayRetentionUsers = null;
|
|
7758
8309
|
|
|
7759
8310
|
/**
|
|
7760
|
-
*
|
|
7761
|
-
* @type {
|
|
8311
|
+
* Day 7 retention of active users.
|
|
8312
|
+
* @type {number || null}
|
|
7762
8313
|
*/
|
|
7763
|
-
this.
|
|
8314
|
+
this.SevenDayRetentionUsers = null;
|
|
7764
8315
|
|
|
7765
8316
|
/**
|
|
7766
|
-
*
|
|
7767
|
-
* @type {
|
|
8317
|
+
* Day 14 retention of active users.
|
|
8318
|
+
* @type {number || null}
|
|
7768
8319
|
*/
|
|
7769
|
-
this.
|
|
8320
|
+
this.FourteenDayRetentionUsers = null;
|
|
7770
8321
|
|
|
7771
8322
|
/**
|
|
7772
|
-
*
|
|
7773
|
-
* @type {
|
|
8323
|
+
* Day 30 retention of active users.
|
|
8324
|
+
* @type {number || null}
|
|
7774
8325
|
*/
|
|
7775
|
-
this.
|
|
8326
|
+
this.ThirtyDayRetentionUsers = null;
|
|
7776
8327
|
|
|
7777
8328
|
/**
|
|
7778
|
-
*
|
|
8329
|
+
* Number of new users.
|
|
7779
8330
|
* @type {number || null}
|
|
7780
8331
|
*/
|
|
7781
|
-
this.
|
|
8332
|
+
this.NewUserCount = null;
|
|
7782
8333
|
|
|
7783
8334
|
/**
|
|
7784
|
-
*
|
|
8335
|
+
* Day 1 retention of new users.
|
|
7785
8336
|
* @type {number || null}
|
|
7786
8337
|
*/
|
|
7787
|
-
this.
|
|
8338
|
+
this.OneDayRetentionNewUsers = null;
|
|
7788
8339
|
|
|
7789
8340
|
/**
|
|
7790
|
-
*
|
|
7791
|
-
* @type {
|
|
8341
|
+
* Day 2 retention of new users.
|
|
8342
|
+
* @type {number || null}
|
|
7792
8343
|
*/
|
|
7793
|
-
this.
|
|
8344
|
+
this.TwoDayRetentionNewUsers = null;
|
|
7794
8345
|
|
|
7795
8346
|
/**
|
|
7796
|
-
*
|
|
7797
|
-
* @type {
|
|
8347
|
+
* Day 3 retention of new users.
|
|
8348
|
+
* @type {number || null}
|
|
7798
8349
|
*/
|
|
7799
|
-
this.
|
|
8350
|
+
this.ThreeDayRetentionNewUsers = null;
|
|
7800
8351
|
|
|
7801
8352
|
/**
|
|
7802
|
-
*
|
|
7803
|
-
* @type {
|
|
8353
|
+
* Day 4 retention of new users.
|
|
8354
|
+
* @type {number || null}
|
|
7804
8355
|
*/
|
|
7805
|
-
this.
|
|
8356
|
+
this.FourDayRetentionNewUsers = null;
|
|
7806
8357
|
|
|
7807
8358
|
/**
|
|
7808
|
-
*
|
|
7809
|
-
* @type {
|
|
8359
|
+
* Day 5 retention of new users.
|
|
8360
|
+
* @type {number || null}
|
|
7810
8361
|
*/
|
|
7811
|
-
this.
|
|
8362
|
+
this.FiveDayRetentionNewUsers = null;
|
|
7812
8363
|
|
|
7813
8364
|
/**
|
|
7814
|
-
*
|
|
7815
|
-
* @type {
|
|
8365
|
+
* Day 6 retention of new users.
|
|
8366
|
+
* @type {number || null}
|
|
7816
8367
|
*/
|
|
7817
|
-
this.
|
|
8368
|
+
this.SixDayRetentionNewUsers = null;
|
|
7818
8369
|
|
|
7819
8370
|
/**
|
|
7820
|
-
*
|
|
8371
|
+
* Day 7 retention of new users.
|
|
7821
8372
|
* @type {number || null}
|
|
7822
8373
|
*/
|
|
7823
|
-
this.
|
|
8374
|
+
this.SevenDayRetentionNewUsers = null;
|
|
7824
8375
|
|
|
7825
8376
|
/**
|
|
7826
|
-
*
|
|
8377
|
+
* Day 14 retention of new users.
|
|
8378
|
+
* @type {number || null}
|
|
8379
|
+
*/
|
|
8380
|
+
this.FourteenDayRetentionNewUsers = null;
|
|
8381
|
+
|
|
8382
|
+
/**
|
|
8383
|
+
* Day 30 retention of new users.
|
|
8384
|
+
* @type {number || null}
|
|
8385
|
+
*/
|
|
8386
|
+
this.ThirtyDayRetentionNewUsers = null;
|
|
8387
|
+
|
|
8388
|
+
/**
|
|
8389
|
+
* Data time in YYYYMMDD format.
|
|
7827
8390
|
* @type {string || null}
|
|
7828
8391
|
*/
|
|
7829
|
-
this.
|
|
8392
|
+
this.DataTime = null;
|
|
7830
8393
|
|
|
7831
8394
|
}
|
|
7832
8395
|
|
|
@@ -7837,35 +8400,44 @@ class DescribeMNPSensitiveAPIPermissionListData extends AbstractModel {
|
|
|
7837
8400
|
if (!params) {
|
|
7838
8401
|
return;
|
|
7839
8402
|
}
|
|
7840
|
-
this.
|
|
7841
|
-
this.
|
|
7842
|
-
this.
|
|
7843
|
-
this.
|
|
7844
|
-
this.
|
|
7845
|
-
this.
|
|
7846
|
-
this.
|
|
7847
|
-
this.
|
|
7848
|
-
this.
|
|
7849
|
-
this.
|
|
7850
|
-
this.
|
|
7851
|
-
this.
|
|
8403
|
+
this.ActiveUserCount = 'ActiveUserCount' in params ? params.ActiveUserCount : null;
|
|
8404
|
+
this.OneDayRetentionUsers = 'OneDayRetentionUsers' in params ? params.OneDayRetentionUsers : null;
|
|
8405
|
+
this.TwoDayRetentionUsers = 'TwoDayRetentionUsers' in params ? params.TwoDayRetentionUsers : null;
|
|
8406
|
+
this.ThreeDayRetentionUsers = 'ThreeDayRetentionUsers' in params ? params.ThreeDayRetentionUsers : null;
|
|
8407
|
+
this.FourDayRetentionUsers = 'FourDayRetentionUsers' in params ? params.FourDayRetentionUsers : null;
|
|
8408
|
+
this.FiveDayRetentionUsers = 'FiveDayRetentionUsers' in params ? params.FiveDayRetentionUsers : null;
|
|
8409
|
+
this.SixDayRetentionUsers = 'SixDayRetentionUsers' in params ? params.SixDayRetentionUsers : null;
|
|
8410
|
+
this.SevenDayRetentionUsers = 'SevenDayRetentionUsers' in params ? params.SevenDayRetentionUsers : null;
|
|
8411
|
+
this.FourteenDayRetentionUsers = 'FourteenDayRetentionUsers' in params ? params.FourteenDayRetentionUsers : null;
|
|
8412
|
+
this.ThirtyDayRetentionUsers = 'ThirtyDayRetentionUsers' in params ? params.ThirtyDayRetentionUsers : null;
|
|
8413
|
+
this.NewUserCount = 'NewUserCount' in params ? params.NewUserCount : null;
|
|
8414
|
+
this.OneDayRetentionNewUsers = 'OneDayRetentionNewUsers' in params ? params.OneDayRetentionNewUsers : null;
|
|
8415
|
+
this.TwoDayRetentionNewUsers = 'TwoDayRetentionNewUsers' in params ? params.TwoDayRetentionNewUsers : null;
|
|
8416
|
+
this.ThreeDayRetentionNewUsers = 'ThreeDayRetentionNewUsers' in params ? params.ThreeDayRetentionNewUsers : null;
|
|
8417
|
+
this.FourDayRetentionNewUsers = 'FourDayRetentionNewUsers' in params ? params.FourDayRetentionNewUsers : null;
|
|
8418
|
+
this.FiveDayRetentionNewUsers = 'FiveDayRetentionNewUsers' in params ? params.FiveDayRetentionNewUsers : null;
|
|
8419
|
+
this.SixDayRetentionNewUsers = 'SixDayRetentionNewUsers' in params ? params.SixDayRetentionNewUsers : null;
|
|
8420
|
+
this.SevenDayRetentionNewUsers = 'SevenDayRetentionNewUsers' in params ? params.SevenDayRetentionNewUsers : null;
|
|
8421
|
+
this.FourteenDayRetentionNewUsers = 'FourteenDayRetentionNewUsers' in params ? params.FourteenDayRetentionNewUsers : null;
|
|
8422
|
+
this.ThirtyDayRetentionNewUsers = 'ThirtyDayRetentionNewUsers' in params ? params.ThirtyDayRetentionNewUsers : null;
|
|
8423
|
+
this.DataTime = 'DataTime' in params ? params.DataTime : null;
|
|
7852
8424
|
|
|
7853
8425
|
}
|
|
7854
8426
|
}
|
|
7855
8427
|
|
|
7856
8428
|
/**
|
|
7857
|
-
*
|
|
8429
|
+
* ResetMNPAppSecret request structure.
|
|
7858
8430
|
* @class
|
|
7859
8431
|
*/
|
|
7860
|
-
class
|
|
8432
|
+
class ResetMNPAppSecretRequest extends AbstractModel {
|
|
7861
8433
|
constructor(){
|
|
7862
8434
|
super();
|
|
7863
8435
|
|
|
7864
8436
|
/**
|
|
7865
|
-
* <p>
|
|
8437
|
+
* <p>Mini program appid.</p>
|
|
7866
8438
|
* @type {string || null}
|
|
7867
8439
|
*/
|
|
7868
|
-
this.
|
|
8440
|
+
this.MNPId = null;
|
|
7869
8441
|
|
|
7870
8442
|
/**
|
|
7871
8443
|
* <p>Platform ID.</p>
|
|
@@ -7873,12 +8445,6 @@ class DescribeMNGVersionRequest extends AbstractModel {
|
|
|
7873
8445
|
*/
|
|
7874
8446
|
this.PlatformId = null;
|
|
7875
8447
|
|
|
7876
|
-
/**
|
|
7877
|
-
* <p>CI/CD key ID.</p>
|
|
7878
|
-
* @type {string || null}
|
|
7879
|
-
*/
|
|
7880
|
-
this.PipelineId = null;
|
|
7881
|
-
|
|
7882
8448
|
}
|
|
7883
8449
|
|
|
7884
8450
|
/**
|
|
@@ -7888,24 +8454,24 @@ class DescribeMNGVersionRequest extends AbstractModel {
|
|
|
7888
8454
|
if (!params) {
|
|
7889
8455
|
return;
|
|
7890
8456
|
}
|
|
7891
|
-
this.
|
|
8457
|
+
this.MNPId = 'MNPId' in params ? params.MNPId : null;
|
|
7892
8458
|
this.PlatformId = 'PlatformId' in params ? params.PlatformId : null;
|
|
7893
|
-
this.PipelineId = 'PipelineId' in params ? params.PipelineId : null;
|
|
7894
8459
|
|
|
7895
8460
|
}
|
|
7896
8461
|
}
|
|
7897
8462
|
|
|
7898
8463
|
/**
|
|
7899
|
-
*
|
|
8464
|
+
* DescribeMNPReportDataLineChart response structure.
|
|
7900
8465
|
* @class
|
|
7901
8466
|
*/
|
|
7902
|
-
class
|
|
8467
|
+
class DescribeMNPReportDataLineChartResponse extends AbstractModel {
|
|
7903
8468
|
constructor(){
|
|
7904
8469
|
super();
|
|
7905
8470
|
|
|
7906
8471
|
/**
|
|
7907
|
-
*
|
|
7908
|
-
|
|
8472
|
+
* Data display.
|
|
8473
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8474
|
+
* @type {Array.<ReportDataResult> || null}
|
|
7909
8475
|
*/
|
|
7910
8476
|
this.Data = null;
|
|
7911
8477
|
|
|
@@ -7926,9 +8492,12 @@ class DescribeTempSecret4UploadFile2CosResponse extends AbstractModel {
|
|
|
7926
8492
|
}
|
|
7927
8493
|
|
|
7928
8494
|
if (params.Data) {
|
|
7929
|
-
|
|
7930
|
-
|
|
7931
|
-
|
|
8495
|
+
this.Data = new Array();
|
|
8496
|
+
for (let z in params.Data) {
|
|
8497
|
+
let obj = new ReportDataResult();
|
|
8498
|
+
obj.deserialize(params.Data[z]);
|
|
8499
|
+
this.Data.push(obj);
|
|
8500
|
+
}
|
|
7932
8501
|
}
|
|
7933
8502
|
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
7934
8503
|
|
|
@@ -7936,138 +8505,211 @@ class DescribeTempSecret4UploadFile2CosResponse extends AbstractModel {
|
|
|
7936
8505
|
}
|
|
7937
8506
|
|
|
7938
8507
|
/**
|
|
7939
|
-
*
|
|
8508
|
+
* List data for querying callable sensitive APIs of a mini program.
|
|
7940
8509
|
* @class
|
|
7941
8510
|
*/
|
|
7942
|
-
class
|
|
8511
|
+
class DescribeMNPSensitiveAPIPermissionListData extends AbstractModel {
|
|
7943
8512
|
constructor(){
|
|
7944
8513
|
super();
|
|
7945
8514
|
|
|
7946
8515
|
/**
|
|
7947
|
-
*
|
|
7948
|
-
* @type {
|
|
8516
|
+
* API ID.
|
|
8517
|
+
* @type {string || null}
|
|
7949
8518
|
*/
|
|
7950
|
-
this.
|
|
8519
|
+
this.APIId = null;
|
|
7951
8520
|
|
|
7952
8521
|
/**
|
|
7953
|
-
*
|
|
7954
|
-
* @type {
|
|
8522
|
+
* API name.
|
|
8523
|
+
* @type {string || null}
|
|
7955
8524
|
*/
|
|
7956
|
-
this.
|
|
8525
|
+
this.APIName = null;
|
|
7957
8526
|
|
|
7958
8527
|
/**
|
|
7959
|
-
*
|
|
7960
|
-
* @type {
|
|
8528
|
+
* API method.
|
|
8529
|
+
* @type {string || null}
|
|
7961
8530
|
*/
|
|
7962
|
-
this.
|
|
8531
|
+
this.APIMethod = null;
|
|
7963
8532
|
|
|
7964
8533
|
/**
|
|
7965
|
-
*
|
|
8534
|
+
* API status.
|
|
7966
8535
|
* @type {number || null}
|
|
7967
8536
|
*/
|
|
7968
|
-
this.
|
|
8537
|
+
this.APIStatus = null;
|
|
7969
8538
|
|
|
7970
8539
|
/**
|
|
7971
|
-
*
|
|
8540
|
+
* API application status.
|
|
7972
8541
|
* @type {number || null}
|
|
7973
8542
|
*/
|
|
7974
|
-
this.
|
|
8543
|
+
this.APIApplyStatus = null;
|
|
7975
8544
|
|
|
7976
8545
|
/**
|
|
7977
|
-
*
|
|
7978
|
-
* @type {
|
|
8546
|
+
* Reason for rejection.
|
|
8547
|
+
* @type {string || null}
|
|
7979
8548
|
*/
|
|
7980
|
-
this.
|
|
8549
|
+
this.RejectReason = null;
|
|
7981
8550
|
|
|
7982
8551
|
/**
|
|
7983
|
-
*
|
|
7984
|
-
* @type {
|
|
8552
|
+
* Approval number.
|
|
8553
|
+
* @type {string || null}
|
|
7985
8554
|
*/
|
|
7986
|
-
this.
|
|
8555
|
+
this.ApprovalNo = null;
|
|
7987
8556
|
|
|
7988
8557
|
/**
|
|
7989
|
-
*
|
|
7990
|
-
* @type {
|
|
8558
|
+
* Superapp ID.
|
|
8559
|
+
* @type {string || null}
|
|
7991
8560
|
*/
|
|
7992
|
-
this.
|
|
8561
|
+
this.ApplicationId = null;
|
|
7993
8562
|
|
|
7994
8563
|
/**
|
|
7995
|
-
*
|
|
7996
|
-
* @type {
|
|
8564
|
+
* Superapp icon.
|
|
8565
|
+
* @type {string || null}
|
|
7997
8566
|
*/
|
|
7998
|
-
this.
|
|
8567
|
+
this.ApplicationIcon = null;
|
|
7999
8568
|
|
|
8000
8569
|
/**
|
|
8001
|
-
*
|
|
8002
|
-
* @type {
|
|
8570
|
+
* Superapp name.
|
|
8571
|
+
* @type {string || null}
|
|
8003
8572
|
*/
|
|
8004
|
-
this.
|
|
8573
|
+
this.ApplicationName = null;
|
|
8005
8574
|
|
|
8006
8575
|
/**
|
|
8007
|
-
*
|
|
8576
|
+
* API type. Valid values: 1: System; 2: Custom.
|
|
8008
8577
|
* @type {number || null}
|
|
8009
8578
|
*/
|
|
8010
|
-
this.
|
|
8579
|
+
this.APIType = null;
|
|
8011
8580
|
|
|
8012
8581
|
/**
|
|
8013
|
-
*
|
|
8014
|
-
* @type {
|
|
8582
|
+
* API feature description.
|
|
8583
|
+
* @type {string || null}
|
|
8015
8584
|
*/
|
|
8016
|
-
this.
|
|
8585
|
+
this.APIDesc = null;
|
|
8586
|
+
|
|
8587
|
+
}
|
|
8588
|
+
|
|
8589
|
+
/**
|
|
8590
|
+
* @private
|
|
8591
|
+
*/
|
|
8592
|
+
deserialize(params) {
|
|
8593
|
+
if (!params) {
|
|
8594
|
+
return;
|
|
8595
|
+
}
|
|
8596
|
+
this.APIId = 'APIId' in params ? params.APIId : null;
|
|
8597
|
+
this.APIName = 'APIName' in params ? params.APIName : null;
|
|
8598
|
+
this.APIMethod = 'APIMethod' in params ? params.APIMethod : null;
|
|
8599
|
+
this.APIStatus = 'APIStatus' in params ? params.APIStatus : null;
|
|
8600
|
+
this.APIApplyStatus = 'APIApplyStatus' in params ? params.APIApplyStatus : null;
|
|
8601
|
+
this.RejectReason = 'RejectReason' in params ? params.RejectReason : null;
|
|
8602
|
+
this.ApprovalNo = 'ApprovalNo' in params ? params.ApprovalNo : null;
|
|
8603
|
+
this.ApplicationId = 'ApplicationId' in params ? params.ApplicationId : null;
|
|
8604
|
+
this.ApplicationIcon = 'ApplicationIcon' in params ? params.ApplicationIcon : null;
|
|
8605
|
+
this.ApplicationName = 'ApplicationName' in params ? params.ApplicationName : null;
|
|
8606
|
+
this.APIType = 'APIType' in params ? params.APIType : null;
|
|
8607
|
+
this.APIDesc = 'APIDesc' in params ? params.APIDesc : null;
|
|
8608
|
+
|
|
8609
|
+
}
|
|
8610
|
+
}
|
|
8611
|
+
|
|
8612
|
+
/**
|
|
8613
|
+
* DescribeMNGVersion request structure.
|
|
8614
|
+
* @class
|
|
8615
|
+
*/
|
|
8616
|
+
class DescribeMNGVersionRequest extends AbstractModel {
|
|
8617
|
+
constructor(){
|
|
8618
|
+
super();
|
|
8017
8619
|
|
|
8018
8620
|
/**
|
|
8019
|
-
*
|
|
8020
|
-
* @type {
|
|
8621
|
+
* <p>Task ID returned by the CreateMNPVersion API.</p>
|
|
8622
|
+
* @type {string || null}
|
|
8021
8623
|
*/
|
|
8022
|
-
this.
|
|
8624
|
+
this.BusinessId = null;
|
|
8023
8625
|
|
|
8024
8626
|
/**
|
|
8025
|
-
*
|
|
8026
|
-
* @type {
|
|
8627
|
+
* <p>Platform ID.</p>
|
|
8628
|
+
* @type {string || null}
|
|
8027
8629
|
*/
|
|
8028
|
-
this.
|
|
8630
|
+
this.PlatformId = null;
|
|
8029
8631
|
|
|
8030
8632
|
/**
|
|
8031
|
-
*
|
|
8032
|
-
* @type {
|
|
8633
|
+
* <p>CICD ID</p>
|
|
8634
|
+
* @type {string || null}
|
|
8033
8635
|
*/
|
|
8034
|
-
this.
|
|
8636
|
+
this.PipelineId = null;
|
|
8035
8637
|
|
|
8036
|
-
|
|
8037
|
-
* Day 5 retention of new users.
|
|
8038
|
-
* @type {number || null}
|
|
8039
|
-
*/
|
|
8040
|
-
this.FiveDayRetentionNewUsers = null;
|
|
8638
|
+
}
|
|
8041
8639
|
|
|
8042
|
-
|
|
8043
|
-
|
|
8044
|
-
|
|
8045
|
-
|
|
8046
|
-
|
|
8640
|
+
/**
|
|
8641
|
+
* @private
|
|
8642
|
+
*/
|
|
8643
|
+
deserialize(params) {
|
|
8644
|
+
if (!params) {
|
|
8645
|
+
return;
|
|
8646
|
+
}
|
|
8647
|
+
this.BusinessId = 'BusinessId' in params ? params.BusinessId : null;
|
|
8648
|
+
this.PlatformId = 'PlatformId' in params ? params.PlatformId : null;
|
|
8649
|
+
this.PipelineId = 'PipelineId' in params ? params.PipelineId : null;
|
|
8650
|
+
|
|
8651
|
+
}
|
|
8652
|
+
}
|
|
8653
|
+
|
|
8654
|
+
/**
|
|
8655
|
+
* DescribeTempSecret4UploadFile2Cos response structure.
|
|
8656
|
+
* @class
|
|
8657
|
+
*/
|
|
8658
|
+
class DescribeTempSecret4UploadFile2CosResponse extends AbstractModel {
|
|
8659
|
+
constructor(){
|
|
8660
|
+
super();
|
|
8047
8661
|
|
|
8048
8662
|
/**
|
|
8049
|
-
*
|
|
8050
|
-
* @type {
|
|
8663
|
+
* Response data
|
|
8664
|
+
* @type {UploadFileTempSecret || null}
|
|
8051
8665
|
*/
|
|
8052
|
-
this.
|
|
8666
|
+
this.Data = null;
|
|
8053
8667
|
|
|
8054
8668
|
/**
|
|
8055
|
-
*
|
|
8056
|
-
* @type {
|
|
8669
|
+
* 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.
|
|
8670
|
+
* @type {string || null}
|
|
8057
8671
|
*/
|
|
8058
|
-
this.
|
|
8672
|
+
this.RequestId = null;
|
|
8673
|
+
|
|
8674
|
+
}
|
|
8675
|
+
|
|
8676
|
+
/**
|
|
8677
|
+
* @private
|
|
8678
|
+
*/
|
|
8679
|
+
deserialize(params) {
|
|
8680
|
+
if (!params) {
|
|
8681
|
+
return;
|
|
8682
|
+
}
|
|
8683
|
+
|
|
8684
|
+
if (params.Data) {
|
|
8685
|
+
let obj = new UploadFileTempSecret();
|
|
8686
|
+
obj.deserialize(params.Data)
|
|
8687
|
+
this.Data = obj;
|
|
8688
|
+
}
|
|
8689
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
8690
|
+
|
|
8691
|
+
}
|
|
8692
|
+
}
|
|
8693
|
+
|
|
8694
|
+
/**
|
|
8695
|
+
* ApproveMNPPaymentEnable response structure.
|
|
8696
|
+
* @class
|
|
8697
|
+
*/
|
|
8698
|
+
class ApproveMNPPaymentEnableResponse extends AbstractModel {
|
|
8699
|
+
constructor(){
|
|
8700
|
+
super();
|
|
8059
8701
|
|
|
8060
8702
|
/**
|
|
8061
|
-
*
|
|
8062
|
-
* @type {
|
|
8703
|
+
* <p>Approval result.</p>
|
|
8704
|
+
* @type {ApproveMNPPaymentOpenRes || null}
|
|
8063
8705
|
*/
|
|
8064
|
-
this.
|
|
8706
|
+
this.Data = null;
|
|
8065
8707
|
|
|
8066
8708
|
/**
|
|
8067
|
-
*
|
|
8709
|
+
* 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.
|
|
8068
8710
|
* @type {string || null}
|
|
8069
8711
|
*/
|
|
8070
|
-
this.
|
|
8712
|
+
this.RequestId = null;
|
|
8071
8713
|
|
|
8072
8714
|
}
|
|
8073
8715
|
|
|
@@ -8078,27 +8720,13 @@ class RetentionData extends AbstractModel {
|
|
|
8078
8720
|
if (!params) {
|
|
8079
8721
|
return;
|
|
8080
8722
|
}
|
|
8081
|
-
|
|
8082
|
-
|
|
8083
|
-
|
|
8084
|
-
|
|
8085
|
-
|
|
8086
|
-
|
|
8087
|
-
this.
|
|
8088
|
-
this.SevenDayRetentionUsers = 'SevenDayRetentionUsers' in params ? params.SevenDayRetentionUsers : null;
|
|
8089
|
-
this.FourteenDayRetentionUsers = 'FourteenDayRetentionUsers' in params ? params.FourteenDayRetentionUsers : null;
|
|
8090
|
-
this.ThirtyDayRetentionUsers = 'ThirtyDayRetentionUsers' in params ? params.ThirtyDayRetentionUsers : null;
|
|
8091
|
-
this.NewUserCount = 'NewUserCount' in params ? params.NewUserCount : null;
|
|
8092
|
-
this.OneDayRetentionNewUsers = 'OneDayRetentionNewUsers' in params ? params.OneDayRetentionNewUsers : null;
|
|
8093
|
-
this.TwoDayRetentionNewUsers = 'TwoDayRetentionNewUsers' in params ? params.TwoDayRetentionNewUsers : null;
|
|
8094
|
-
this.ThreeDayRetentionNewUsers = 'ThreeDayRetentionNewUsers' in params ? params.ThreeDayRetentionNewUsers : null;
|
|
8095
|
-
this.FourDayRetentionNewUsers = 'FourDayRetentionNewUsers' in params ? params.FourDayRetentionNewUsers : null;
|
|
8096
|
-
this.FiveDayRetentionNewUsers = 'FiveDayRetentionNewUsers' in params ? params.FiveDayRetentionNewUsers : null;
|
|
8097
|
-
this.SixDayRetentionNewUsers = 'SixDayRetentionNewUsers' in params ? params.SixDayRetentionNewUsers : null;
|
|
8098
|
-
this.SevenDayRetentionNewUsers = 'SevenDayRetentionNewUsers' in params ? params.SevenDayRetentionNewUsers : null;
|
|
8099
|
-
this.FourteenDayRetentionNewUsers = 'FourteenDayRetentionNewUsers' in params ? params.FourteenDayRetentionNewUsers : null;
|
|
8100
|
-
this.ThirtyDayRetentionNewUsers = 'ThirtyDayRetentionNewUsers' in params ? params.ThirtyDayRetentionNewUsers : null;
|
|
8101
|
-
this.DataTime = 'DataTime' in params ? params.DataTime : null;
|
|
8723
|
+
|
|
8724
|
+
if (params.Data) {
|
|
8725
|
+
let obj = new ApproveMNPPaymentOpenRes();
|
|
8726
|
+
obj.deserialize(params.Data)
|
|
8727
|
+
this.Data = obj;
|
|
8728
|
+
}
|
|
8729
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
8102
8730
|
|
|
8103
8731
|
}
|
|
8104
8732
|
}
|
|
@@ -8911,24 +9539,25 @@ class DescribeMNPApprovalListRequest extends AbstractModel {
|
|
|
8911
9539
|
}
|
|
8912
9540
|
|
|
8913
9541
|
/**
|
|
8914
|
-
*
|
|
9542
|
+
* DescribeMNGPaymentRetentionAnalysis response structure.
|
|
8915
9543
|
* @class
|
|
8916
9544
|
*/
|
|
8917
|
-
class
|
|
9545
|
+
class DescribeMNGPaymentRetentionAnalysisResponse extends AbstractModel {
|
|
8918
9546
|
constructor(){
|
|
8919
9547
|
super();
|
|
8920
9548
|
|
|
8921
9549
|
/**
|
|
8922
|
-
*
|
|
8923
|
-
|
|
9550
|
+
* Data display.
|
|
9551
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
9552
|
+
* @type {Array.<PaymentActiveRetention> || null}
|
|
8924
9553
|
*/
|
|
8925
|
-
this.
|
|
9554
|
+
this.Data = null;
|
|
8926
9555
|
|
|
8927
9556
|
/**
|
|
8928
|
-
*
|
|
8929
|
-
* @type {
|
|
9557
|
+
* 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.
|
|
9558
|
+
* @type {string || null}
|
|
8930
9559
|
*/
|
|
8931
|
-
this.
|
|
9560
|
+
this.RequestId = null;
|
|
8932
9561
|
|
|
8933
9562
|
}
|
|
8934
9563
|
|
|
@@ -8939,16 +9568,16 @@ class MAUDetail extends AbstractModel {
|
|
|
8939
9568
|
if (!params) {
|
|
8940
9569
|
return;
|
|
8941
9570
|
}
|
|
8942
|
-
this.MNPName = 'MNPName' in params ? params.MNPName : null;
|
|
8943
9571
|
|
|
8944
|
-
if (params.
|
|
8945
|
-
this.
|
|
8946
|
-
for (let z in params.
|
|
8947
|
-
let obj = new
|
|
8948
|
-
obj.deserialize(params.
|
|
8949
|
-
this.
|
|
9572
|
+
if (params.Data) {
|
|
9573
|
+
this.Data = new Array();
|
|
9574
|
+
for (let z in params.Data) {
|
|
9575
|
+
let obj = new PaymentActiveRetention();
|
|
9576
|
+
obj.deserialize(params.Data[z]);
|
|
9577
|
+
this.Data.push(obj);
|
|
8950
9578
|
}
|
|
8951
9579
|
}
|
|
9580
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
8952
9581
|
|
|
8953
9582
|
}
|
|
8954
9583
|
}
|
|
@@ -9110,11 +9739,24 @@ class DescribeMNPManagerDetailData extends AbstractModel {
|
|
|
9110
9739
|
this.I18nList = null;
|
|
9111
9740
|
|
|
9112
9741
|
/**
|
|
9113
|
-
* Team type ID. Valid values: 1: Mini program team; 2: Superapp team; 3: Service provider team
|
|
9742
|
+
* <p>Team type ID. Valid values: 1: Mini program team; 2: Superapp team; 3: Service provider team.</p>
|
|
9114
9743
|
* @type {number || null}
|
|
9115
9744
|
*/
|
|
9116
9745
|
this.TeamTypeId = null;
|
|
9117
9746
|
|
|
9747
|
+
/**
|
|
9748
|
+
* <p>Age rating information.</p>
|
|
9749
|
+
* @type {Array.<AgeRatingItem> || null}
|
|
9750
|
+
*/
|
|
9751
|
+
this.AgeRatings = null;
|
|
9752
|
+
|
|
9753
|
+
/**
|
|
9754
|
+
* <p>Merchant ID bound to the team to which the mini program belongs.</p>
|
|
9755
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
9756
|
+
* @type {string || null}
|
|
9757
|
+
*/
|
|
9758
|
+
this.MerchantId = null;
|
|
9759
|
+
|
|
9118
9760
|
}
|
|
9119
9761
|
|
|
9120
9762
|
/**
|
|
@@ -9147,6 +9789,16 @@ class DescribeMNPManagerDetailData extends AbstractModel {
|
|
|
9147
9789
|
}
|
|
9148
9790
|
this.TeamTypeId = 'TeamTypeId' in params ? params.TeamTypeId : null;
|
|
9149
9791
|
|
|
9792
|
+
if (params.AgeRatings) {
|
|
9793
|
+
this.AgeRatings = new Array();
|
|
9794
|
+
for (let z in params.AgeRatings) {
|
|
9795
|
+
let obj = new AgeRatingItem();
|
|
9796
|
+
obj.deserialize(params.AgeRatings[z]);
|
|
9797
|
+
this.AgeRatings.push(obj);
|
|
9798
|
+
}
|
|
9799
|
+
}
|
|
9800
|
+
this.MerchantId = 'MerchantId' in params ? params.MerchantId : null;
|
|
9801
|
+
|
|
9150
9802
|
}
|
|
9151
9803
|
}
|
|
9152
9804
|
|
|
@@ -9520,6 +10172,41 @@ class DescribeMNPReportDetailRequest extends AbstractModel {
|
|
|
9520
10172
|
}
|
|
9521
10173
|
}
|
|
9522
10174
|
|
|
10175
|
+
/**
|
|
10176
|
+
* QueryMNPMerchantInfo request structure.
|
|
10177
|
+
* @class
|
|
10178
|
+
*/
|
|
10179
|
+
class QueryMNPMerchantInfoRequest extends AbstractModel {
|
|
10180
|
+
constructor(){
|
|
10181
|
+
super();
|
|
10182
|
+
|
|
10183
|
+
/**
|
|
10184
|
+
* <p>Platform ID.</p>
|
|
10185
|
+
* @type {string || null}
|
|
10186
|
+
*/
|
|
10187
|
+
this.PlatformId = null;
|
|
10188
|
+
|
|
10189
|
+
/**
|
|
10190
|
+
* <p>Mini program appid.</p>
|
|
10191
|
+
* @type {string || null}
|
|
10192
|
+
*/
|
|
10193
|
+
this.QueryTeamID = null;
|
|
10194
|
+
|
|
10195
|
+
}
|
|
10196
|
+
|
|
10197
|
+
/**
|
|
10198
|
+
* @private
|
|
10199
|
+
*/
|
|
10200
|
+
deserialize(params) {
|
|
10201
|
+
if (!params) {
|
|
10202
|
+
return;
|
|
10203
|
+
}
|
|
10204
|
+
this.PlatformId = 'PlatformId' in params ? params.PlatformId : null;
|
|
10205
|
+
this.QueryTeamID = 'QueryTeamID' in params ? params.QueryTeamID : null;
|
|
10206
|
+
|
|
10207
|
+
}
|
|
10208
|
+
}
|
|
10209
|
+
|
|
9523
10210
|
/**
|
|
9524
10211
|
* ModifyMNGDomain response structure.
|
|
9525
10212
|
* @class
|
|
@@ -11008,6 +11695,46 @@ class DescribeMNGAdvertisingDetailRequest extends AbstractModel {
|
|
|
11008
11695
|
}
|
|
11009
11696
|
}
|
|
11010
11697
|
|
|
11698
|
+
/**
|
|
11699
|
+
* QueryMNPMerchantInfo response structure.
|
|
11700
|
+
* @class
|
|
11701
|
+
*/
|
|
11702
|
+
class QueryMNPMerchantInfoResponse extends AbstractModel {
|
|
11703
|
+
constructor(){
|
|
11704
|
+
super();
|
|
11705
|
+
|
|
11706
|
+
/**
|
|
11707
|
+
* <p>Response parameters structure for querying the merchant approval status of a mini program team.</p>
|
|
11708
|
+
* @type {DescribeMNPTeamMerchantInfoRes || null}
|
|
11709
|
+
*/
|
|
11710
|
+
this.Data = null;
|
|
11711
|
+
|
|
11712
|
+
/**
|
|
11713
|
+
* 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.
|
|
11714
|
+
* @type {string || null}
|
|
11715
|
+
*/
|
|
11716
|
+
this.RequestId = null;
|
|
11717
|
+
|
|
11718
|
+
}
|
|
11719
|
+
|
|
11720
|
+
/**
|
|
11721
|
+
* @private
|
|
11722
|
+
*/
|
|
11723
|
+
deserialize(params) {
|
|
11724
|
+
if (!params) {
|
|
11725
|
+
return;
|
|
11726
|
+
}
|
|
11727
|
+
|
|
11728
|
+
if (params.Data) {
|
|
11729
|
+
let obj = new DescribeMNPTeamMerchantInfoRes();
|
|
11730
|
+
obj.deserialize(params.Data)
|
|
11731
|
+
this.Data = obj;
|
|
11732
|
+
}
|
|
11733
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
11734
|
+
|
|
11735
|
+
}
|
|
11736
|
+
}
|
|
11737
|
+
|
|
11011
11738
|
/**
|
|
11012
11739
|
* DescribeMNPPreview response structure.
|
|
11013
11740
|
* @class
|
|
@@ -11356,113 +12083,119 @@ class DescribeMPAllStageVersionsResp extends AbstractModel {
|
|
|
11356
12083
|
super();
|
|
11357
12084
|
|
|
11358
12085
|
/**
|
|
11359
|
-
* Mini program appid
|
|
12086
|
+
* <p>Mini program appid.</p>
|
|
11360
12087
|
* @type {string || null}
|
|
11361
12088
|
*/
|
|
11362
12089
|
this.MNPId = null;
|
|
11363
12090
|
|
|
11364
12091
|
/**
|
|
11365
|
-
* Mini program version primary key ID
|
|
12092
|
+
* <p>Mini program version primary key ID.</p>
|
|
11366
12093
|
* @type {number || null}
|
|
11367
12094
|
*/
|
|
11368
12095
|
this.MNPVersionId = null;
|
|
11369
12096
|
|
|
11370
12097
|
/**
|
|
11371
|
-
* Mini program name
|
|
12098
|
+
* <p>Mini program name.</p>
|
|
11372
12099
|
* @type {string || null}
|
|
11373
12100
|
*/
|
|
11374
12101
|
this.MNPName = null;
|
|
11375
12102
|
|
|
11376
12103
|
/**
|
|
11377
|
-
* Mini program icon
|
|
12104
|
+
* <p>Mini program icon.</p>
|
|
11378
12105
|
* @type {string || null}
|
|
11379
12106
|
*/
|
|
11380
12107
|
this.MNPIcon = null;
|
|
11381
12108
|
|
|
11382
12109
|
/**
|
|
11383
|
-
* Mini program category
|
|
12110
|
+
* <p>Mini program category.</p>
|
|
11384
12111
|
* @type {string || null}
|
|
11385
12112
|
*/
|
|
11386
12113
|
this.MNPType = null;
|
|
11387
12114
|
|
|
11388
12115
|
/**
|
|
11389
|
-
* Mini program introduction
|
|
12116
|
+
* <p>Mini program introduction.</p>
|
|
11390
12117
|
* @type {string || null}
|
|
11391
12118
|
*/
|
|
11392
12119
|
this.MNPIntro = null;
|
|
11393
12120
|
|
|
11394
12121
|
/**
|
|
11395
|
-
* Mini program description
|
|
12122
|
+
* <p>Mini program description.</p>
|
|
11396
12123
|
* @type {string || null}
|
|
11397
12124
|
*/
|
|
11398
12125
|
this.MNPDesc = null;
|
|
11399
12126
|
|
|
11400
12127
|
/**
|
|
11401
|
-
* Creator
|
|
12128
|
+
* <p>Creator.</p>
|
|
11402
12129
|
* @type {string || null}
|
|
11403
12130
|
*/
|
|
11404
12131
|
this.CreateUser = null;
|
|
11405
12132
|
|
|
11406
12133
|
/**
|
|
11407
|
-
* Creation time
|
|
12134
|
+
* <p>Creation time.</p>
|
|
11408
12135
|
* @type {string || null}
|
|
11409
12136
|
*/
|
|
11410
12137
|
this.CreateTime = null;
|
|
11411
12138
|
|
|
11412
12139
|
/**
|
|
11413
|
-
* Mini program version
|
|
12140
|
+
* <p>Mini program version.</p>
|
|
11414
12141
|
* @type {string || null}
|
|
11415
12142
|
*/
|
|
11416
12143
|
this.MNPVersion = null;
|
|
11417
12144
|
|
|
11418
12145
|
/**
|
|
11419
|
-
* Version introduction
|
|
12146
|
+
* <p>Version introduction.</p>
|
|
11420
12147
|
* @type {string || null}
|
|
11421
12148
|
*/
|
|
11422
12149
|
this.MNPVersionIntro = null;
|
|
11423
12150
|
|
|
11424
12151
|
/**
|
|
11425
|
-
* Phase:
|
|
12152
|
+
* <p>Phase: Valid values: Develop; Platform; Online.</p>
|
|
11426
12153
|
* @type {string || null}
|
|
11427
12154
|
*/
|
|
11428
12155
|
this.Phase = null;
|
|
11429
12156
|
|
|
11430
12157
|
/**
|
|
11431
|
-
* Approval status. Valid values: 0: Pending; 1: Processing; 2: Rejected; 3: Approved; 4: Cancelled
|
|
12158
|
+
* <p>Approval status. Valid values: 0: Pending; 1: Processing; 2: Rejected; 3: Approved; 4: Cancelled.</p>
|
|
11432
12159
|
* @type {number || null}
|
|
11433
12160
|
*/
|
|
11434
12161
|
this.ApprovalStatus = null;
|
|
11435
12162
|
|
|
11436
12163
|
/**
|
|
11437
|
-
* Approval number
|
|
12164
|
+
* <p>Approval number.</p>
|
|
11438
12165
|
* @type {string || null}
|
|
11439
12166
|
*/
|
|
11440
12167
|
this.ApprovalNo = null;
|
|
11441
12168
|
|
|
11442
12169
|
/**
|
|
11443
|
-
* Whether this is a preview. Valid values: 0: No; 1: Yes
|
|
12170
|
+
* <p>Whether this is a preview. Valid values: 0: No; 1: Yes.</p>
|
|
11444
12171
|
* @type {number || null}
|
|
11445
12172
|
*/
|
|
11446
12173
|
this.ShowCase = null;
|
|
11447
12174
|
|
|
11448
12175
|
/**
|
|
11449
|
-
* Rollback version number
|
|
12176
|
+
* <p>Rollback version number.</p>
|
|
11450
12177
|
* @type {number || null}
|
|
11451
12178
|
*/
|
|
11452
12179
|
this.RollbackVersion = null;
|
|
11453
12180
|
|
|
11454
12181
|
/**
|
|
11455
|
-
* Available status. Valid value: 0: All; 1 Available; 2: In canary release
|
|
12182
|
+
* <p>Available status. Valid value: 0: All; 1 Available; 2: In canary release.</p>
|
|
11456
12183
|
* @type {number || null}
|
|
11457
12184
|
*/
|
|
11458
12185
|
this.Status = null;
|
|
11459
12186
|
|
|
11460
12187
|
/**
|
|
11461
|
-
* Current version approval status. Valid values: 0: Pending; 1: Processing; 2: Rejected; 3: Approved; 4: Cancelled
|
|
12188
|
+
* <p>Current version approval status. Valid values: 0: Pending; 1: Processing; 2: Rejected; 3: Approved; 4: Cancelled.</p>
|
|
11462
12189
|
* @type {number || null}
|
|
11463
12190
|
*/
|
|
11464
12191
|
this.VersionCurrentStatus = null;
|
|
11465
12192
|
|
|
12193
|
+
/**
|
|
12194
|
+
* <p>Age rating information.</p>
|
|
12195
|
+
* @type {Array.<AgeRatingItem> || null}
|
|
12196
|
+
*/
|
|
12197
|
+
this.AgeRatings = null;
|
|
12198
|
+
|
|
11466
12199
|
}
|
|
11467
12200
|
|
|
11468
12201
|
/**
|
|
@@ -11491,6 +12224,15 @@ class DescribeMPAllStageVersionsResp extends AbstractModel {
|
|
|
11491
12224
|
this.Status = 'Status' in params ? params.Status : null;
|
|
11492
12225
|
this.VersionCurrentStatus = 'VersionCurrentStatus' in params ? params.VersionCurrentStatus : null;
|
|
11493
12226
|
|
|
12227
|
+
if (params.AgeRatings) {
|
|
12228
|
+
this.AgeRatings = new Array();
|
|
12229
|
+
for (let z in params.AgeRatings) {
|
|
12230
|
+
let obj = new AgeRatingItem();
|
|
12231
|
+
obj.deserialize(params.AgeRatings[z]);
|
|
12232
|
+
this.AgeRatings.push(obj);
|
|
12233
|
+
}
|
|
12234
|
+
}
|
|
12235
|
+
|
|
11494
12236
|
}
|
|
11495
12237
|
}
|
|
11496
12238
|
|
|
@@ -11656,17 +12398,23 @@ class DescribeMNGListData extends AbstractModel {
|
|
|
11656
12398
|
this.EffectMNPVersion = null;
|
|
11657
12399
|
|
|
11658
12400
|
/**
|
|
11659
|
-
* Team ID
|
|
12401
|
+
* <p>Team ID.</p>
|
|
11660
12402
|
* @type {string || null}
|
|
11661
12403
|
*/
|
|
11662
12404
|
this.TeamId = null;
|
|
11663
12405
|
|
|
11664
12406
|
/**
|
|
11665
|
-
* Team type ID. Valid values: 1: Mini program team; 2: Superapp team; 3: Service provider team
|
|
12407
|
+
* <p>Team type ID. Valid values: 1: Mini program team; 2: Superapp team; 3: Service provider team.</p>
|
|
11666
12408
|
* @type {number || null}
|
|
11667
12409
|
*/
|
|
11668
12410
|
this.TeamTypeId = null;
|
|
11669
12411
|
|
|
12412
|
+
/**
|
|
12413
|
+
* <p>Age rating information.</p>
|
|
12414
|
+
* @type {Array.<AgeRatingItem> || null}
|
|
12415
|
+
*/
|
|
12416
|
+
this.AgeRatings = null;
|
|
12417
|
+
|
|
11670
12418
|
}
|
|
11671
12419
|
|
|
11672
12420
|
/**
|
|
@@ -11694,6 +12442,15 @@ class DescribeMNGListData extends AbstractModel {
|
|
|
11694
12442
|
this.TeamId = 'TeamId' in params ? params.TeamId : null;
|
|
11695
12443
|
this.TeamTypeId = 'TeamTypeId' in params ? params.TeamTypeId : null;
|
|
11696
12444
|
|
|
12445
|
+
if (params.AgeRatings) {
|
|
12446
|
+
this.AgeRatings = new Array();
|
|
12447
|
+
for (let z in params.AgeRatings) {
|
|
12448
|
+
let obj = new AgeRatingItem();
|
|
12449
|
+
obj.deserialize(params.AgeRatings[z]);
|
|
12450
|
+
this.AgeRatings.push(obj);
|
|
12451
|
+
}
|
|
12452
|
+
}
|
|
12453
|
+
|
|
11697
12454
|
}
|
|
11698
12455
|
}
|
|
11699
12456
|
|
|
@@ -11887,25 +12644,24 @@ class DescribeMNGSubscribeMessageTemplateLibraryRequest extends AbstractModel {
|
|
|
11887
12644
|
}
|
|
11888
12645
|
|
|
11889
12646
|
/**
|
|
11890
|
-
*
|
|
12647
|
+
* Mini program MAU details.
|
|
11891
12648
|
* @class
|
|
11892
12649
|
*/
|
|
11893
|
-
class
|
|
12650
|
+
class MAUDetail extends AbstractModel {
|
|
11894
12651
|
constructor(){
|
|
11895
12652
|
super();
|
|
11896
12653
|
|
|
11897
12654
|
/**
|
|
11898
|
-
*
|
|
11899
|
-
|
|
11900
|
-
* @type {Array.<PaymentActiveRetention> || null}
|
|
12655
|
+
* Mini program name.
|
|
12656
|
+
* @type {string || null}
|
|
11901
12657
|
*/
|
|
11902
|
-
this.
|
|
12658
|
+
this.MNPName = null;
|
|
11903
12659
|
|
|
11904
12660
|
/**
|
|
11905
|
-
*
|
|
11906
|
-
* @type {
|
|
12661
|
+
* MAU details.
|
|
12662
|
+
* @type {Array.<MAULineChartData> || null}
|
|
11907
12663
|
*/
|
|
11908
|
-
this.
|
|
12664
|
+
this.DataList = null;
|
|
11909
12665
|
|
|
11910
12666
|
}
|
|
11911
12667
|
|
|
@@ -11916,16 +12672,16 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
11916
12672
|
if (!params) {
|
|
11917
12673
|
return;
|
|
11918
12674
|
}
|
|
12675
|
+
this.MNPName = 'MNPName' in params ? params.MNPName : null;
|
|
11919
12676
|
|
|
11920
|
-
if (params.
|
|
11921
|
-
this.
|
|
11922
|
-
for (let z in params.
|
|
11923
|
-
let obj = new
|
|
11924
|
-
obj.deserialize(params.
|
|
11925
|
-
this.
|
|
12677
|
+
if (params.DataList) {
|
|
12678
|
+
this.DataList = new Array();
|
|
12679
|
+
for (let z in params.DataList) {
|
|
12680
|
+
let obj = new MAULineChartData();
|
|
12681
|
+
obj.deserialize(params.DataList[z]);
|
|
12682
|
+
this.DataList.push(obj);
|
|
11926
12683
|
}
|
|
11927
12684
|
}
|
|
11928
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
11929
12685
|
|
|
11930
12686
|
}
|
|
11931
12687
|
}
|
|
@@ -11971,60 +12727,25 @@ class DescribeMNGPreviewResponse extends AbstractModel {
|
|
|
11971
12727
|
}
|
|
11972
12728
|
|
|
11973
12729
|
/**
|
|
11974
|
-
*
|
|
12730
|
+
* DescribeAPPDataDetailLineChart response structure.
|
|
11975
12731
|
* @class
|
|
11976
12732
|
*/
|
|
11977
|
-
class
|
|
12733
|
+
class DescribeAPPDataDetailLineChartResponse extends AbstractModel {
|
|
11978
12734
|
constructor(){
|
|
11979
12735
|
super();
|
|
11980
12736
|
|
|
11981
12737
|
/**
|
|
11982
|
-
*
|
|
11983
|
-
|
|
11984
|
-
|
|
11985
|
-
this.DataTime = null;
|
|
11986
|
-
|
|
11987
|
-
/**
|
|
11988
|
-
* Mini program name.
|
|
11989
|
-
* @type {string || null}
|
|
11990
|
-
*/
|
|
11991
|
-
this.MNPName = null;
|
|
11992
|
-
|
|
11993
|
-
/**
|
|
11994
|
-
* Mini program category.
|
|
11995
|
-
* @type {string || null}
|
|
11996
|
-
*/
|
|
11997
|
-
this.MNPType = null;
|
|
11998
|
-
|
|
11999
|
-
/**
|
|
12000
|
-
* Estimated revenue.
|
|
12001
|
-
* @type {string || null}
|
|
12002
|
-
*/
|
|
12003
|
-
this.EstimatedEarnings = null;
|
|
12004
|
-
|
|
12005
|
-
/**
|
|
12006
|
-
* Number of requests.
|
|
12007
|
-
* @type {number || null}
|
|
12008
|
-
*/
|
|
12009
|
-
this.RequestsNumber = null;
|
|
12010
|
-
|
|
12011
|
-
/**
|
|
12012
|
-
* Number of impressions.
|
|
12013
|
-
* @type {number || null}
|
|
12738
|
+
* Data display.
|
|
12739
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
12740
|
+
* @type {Array.<ReportDataResult> || null}
|
|
12014
12741
|
*/
|
|
12015
|
-
this.
|
|
12742
|
+
this.Data = null;
|
|
12016
12743
|
|
|
12017
12744
|
/**
|
|
12018
|
-
*
|
|
12745
|
+
* 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.
|
|
12019
12746
|
* @type {string || null}
|
|
12020
12747
|
*/
|
|
12021
|
-
this.
|
|
12022
|
-
|
|
12023
|
-
/**
|
|
12024
|
-
* Number of taps.
|
|
12025
|
-
* @type {number || null}
|
|
12026
|
-
*/
|
|
12027
|
-
this.ClicksNumber = null;
|
|
12748
|
+
this.RequestId = null;
|
|
12028
12749
|
|
|
12029
12750
|
}
|
|
12030
12751
|
|
|
@@ -12035,14 +12756,16 @@ class MAUDetailData extends AbstractModel {
|
|
|
12035
12756
|
if (!params) {
|
|
12036
12757
|
return;
|
|
12037
12758
|
}
|
|
12038
|
-
|
|
12039
|
-
|
|
12040
|
-
|
|
12041
|
-
|
|
12042
|
-
|
|
12043
|
-
|
|
12044
|
-
|
|
12045
|
-
|
|
12759
|
+
|
|
12760
|
+
if (params.Data) {
|
|
12761
|
+
this.Data = new Array();
|
|
12762
|
+
for (let z in params.Data) {
|
|
12763
|
+
let obj = new ReportDataResult();
|
|
12764
|
+
obj.deserialize(params.Data[z]);
|
|
12765
|
+
this.Data.push(obj);
|
|
12766
|
+
}
|
|
12767
|
+
}
|
|
12768
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
12046
12769
|
|
|
12047
12770
|
}
|
|
12048
12771
|
}
|
|
@@ -12471,10 +13194,10 @@ class MNPTypeDefine extends AbstractModel {
|
|
|
12471
13194
|
}
|
|
12472
13195
|
|
|
12473
13196
|
/**
|
|
12474
|
-
*
|
|
13197
|
+
* DescribeMNGCategory request structure.
|
|
12475
13198
|
* @class
|
|
12476
13199
|
*/
|
|
12477
|
-
class
|
|
13200
|
+
class DescribeMNGCategoryRequest extends AbstractModel {
|
|
12478
13201
|
constructor(){
|
|
12479
13202
|
super();
|
|
12480
13203
|
|
|
@@ -12484,18 +13207,6 @@ class DeleteMNPSubscribeMessageTemplateRequest extends AbstractModel {
|
|
|
12484
13207
|
*/
|
|
12485
13208
|
this.PlatformId = null;
|
|
12486
13209
|
|
|
12487
|
-
/**
|
|
12488
|
-
* <p>Mini program appid.</p>
|
|
12489
|
-
* @type {string || null}
|
|
12490
|
-
*/
|
|
12491
|
-
this.MNPId = null;
|
|
12492
|
-
|
|
12493
|
-
/**
|
|
12494
|
-
* <p>Template ID.</p>
|
|
12495
|
-
* @type {string || null}
|
|
12496
|
-
*/
|
|
12497
|
-
this.TemplateId = null;
|
|
12498
|
-
|
|
12499
13210
|
}
|
|
12500
13211
|
|
|
12501
13212
|
/**
|
|
@@ -12506,8 +13217,6 @@ class DeleteMNPSubscribeMessageTemplateRequest extends AbstractModel {
|
|
|
12506
13217
|
return;
|
|
12507
13218
|
}
|
|
12508
13219
|
this.PlatformId = 'PlatformId' in params ? params.PlatformId : null;
|
|
12509
|
-
this.MNPId = 'MNPId' in params ? params.MNPId : null;
|
|
12510
|
-
this.TemplateId = 'TemplateId' in params ? params.TemplateId : null;
|
|
12511
13220
|
|
|
12512
13221
|
}
|
|
12513
13222
|
}
|
|
@@ -12825,6 +13534,46 @@ class RemoveMNGResponse extends AbstractModel {
|
|
|
12825
13534
|
}
|
|
12826
13535
|
}
|
|
12827
13536
|
|
|
13537
|
+
/**
|
|
13538
|
+
* DescribeMNPPaymentApprovalInfo response structure.
|
|
13539
|
+
* @class
|
|
13540
|
+
*/
|
|
13541
|
+
class DescribeMNPPaymentApprovalInfoResponse extends AbstractModel {
|
|
13542
|
+
constructor(){
|
|
13543
|
+
super();
|
|
13544
|
+
|
|
13545
|
+
/**
|
|
13546
|
+
* <p>Queries the approval status of mini program payment activation.</p>
|
|
13547
|
+
* @type {ApplyPaymentOpenDetailRes || null}
|
|
13548
|
+
*/
|
|
13549
|
+
this.Data = null;
|
|
13550
|
+
|
|
13551
|
+
/**
|
|
13552
|
+
* 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.
|
|
13553
|
+
* @type {string || null}
|
|
13554
|
+
*/
|
|
13555
|
+
this.RequestId = null;
|
|
13556
|
+
|
|
13557
|
+
}
|
|
13558
|
+
|
|
13559
|
+
/**
|
|
13560
|
+
* @private
|
|
13561
|
+
*/
|
|
13562
|
+
deserialize(params) {
|
|
13563
|
+
if (!params) {
|
|
13564
|
+
return;
|
|
13565
|
+
}
|
|
13566
|
+
|
|
13567
|
+
if (params.Data) {
|
|
13568
|
+
let obj = new ApplyPaymentOpenDetailRes();
|
|
13569
|
+
obj.deserialize(params.Data)
|
|
13570
|
+
this.Data = obj;
|
|
13571
|
+
}
|
|
13572
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
13573
|
+
|
|
13574
|
+
}
|
|
13575
|
+
}
|
|
13576
|
+
|
|
12828
13577
|
/**
|
|
12829
13578
|
* Subcategory item information.
|
|
12830
13579
|
* @class
|
|
@@ -12861,10 +13610,52 @@ class CategoryItem extends AbstractModel {
|
|
|
12861
13610
|
}
|
|
12862
13611
|
|
|
12863
13612
|
/**
|
|
12864
|
-
*
|
|
13613
|
+
* DeleteMNPSubscribeMessageTemplate request structure.
|
|
12865
13614
|
* @class
|
|
12866
13615
|
*/
|
|
12867
|
-
class
|
|
13616
|
+
class DeleteMNPSubscribeMessageTemplateRequest extends AbstractModel {
|
|
13617
|
+
constructor(){
|
|
13618
|
+
super();
|
|
13619
|
+
|
|
13620
|
+
/**
|
|
13621
|
+
* <p>Platform ID.</p>
|
|
13622
|
+
* @type {string || null}
|
|
13623
|
+
*/
|
|
13624
|
+
this.PlatformId = null;
|
|
13625
|
+
|
|
13626
|
+
/**
|
|
13627
|
+
* <p>Mini program appid.</p>
|
|
13628
|
+
* @type {string || null}
|
|
13629
|
+
*/
|
|
13630
|
+
this.MNPId = null;
|
|
13631
|
+
|
|
13632
|
+
/**
|
|
13633
|
+
* <p>Template ID.</p>
|
|
13634
|
+
* @type {string || null}
|
|
13635
|
+
*/
|
|
13636
|
+
this.TemplateId = null;
|
|
13637
|
+
|
|
13638
|
+
}
|
|
13639
|
+
|
|
13640
|
+
/**
|
|
13641
|
+
* @private
|
|
13642
|
+
*/
|
|
13643
|
+
deserialize(params) {
|
|
13644
|
+
if (!params) {
|
|
13645
|
+
return;
|
|
13646
|
+
}
|
|
13647
|
+
this.PlatformId = 'PlatformId' in params ? params.PlatformId : null;
|
|
13648
|
+
this.MNPId = 'MNPId' in params ? params.MNPId : null;
|
|
13649
|
+
this.TemplateId = 'TemplateId' in params ? params.TemplateId : null;
|
|
13650
|
+
|
|
13651
|
+
}
|
|
13652
|
+
}
|
|
13653
|
+
|
|
13654
|
+
/**
|
|
13655
|
+
* RequestPaymentEnable request structure.
|
|
13656
|
+
* @class
|
|
13657
|
+
*/
|
|
13658
|
+
class RequestPaymentEnableRequest extends AbstractModel {
|
|
12868
13659
|
constructor(){
|
|
12869
13660
|
super();
|
|
12870
13661
|
|
|
@@ -12874,6 +13665,18 @@ class DescribeMNGCategoryRequest extends AbstractModel {
|
|
|
12874
13665
|
*/
|
|
12875
13666
|
this.PlatformId = null;
|
|
12876
13667
|
|
|
13668
|
+
/**
|
|
13669
|
+
* <p>Mini program appid.</p>
|
|
13670
|
+
* @type {string || null}
|
|
13671
|
+
*/
|
|
13672
|
+
this.MNPId = null;
|
|
13673
|
+
|
|
13674
|
+
/**
|
|
13675
|
+
* <p>Note for requesting payment activation.</p>
|
|
13676
|
+
* @type {string || null}
|
|
13677
|
+
*/
|
|
13678
|
+
this.ApplyNote = null;
|
|
13679
|
+
|
|
12877
13680
|
}
|
|
12878
13681
|
|
|
12879
13682
|
/**
|
|
@@ -12884,6 +13687,8 @@ class DescribeMNGCategoryRequest extends AbstractModel {
|
|
|
12884
13687
|
return;
|
|
12885
13688
|
}
|
|
12886
13689
|
this.PlatformId = 'PlatformId' in params ? params.PlatformId : null;
|
|
13690
|
+
this.MNPId = 'MNPId' in params ? params.MNPId : null;
|
|
13691
|
+
this.ApplyNote = 'ApplyNote' in params ? params.ApplyNote : null;
|
|
12887
13692
|
|
|
12888
13693
|
}
|
|
12889
13694
|
}
|
|
@@ -13209,6 +14014,41 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
13209
14014
|
}
|
|
13210
14015
|
}
|
|
13211
14016
|
|
|
14017
|
+
/**
|
|
14018
|
+
* Response parameters structure for requesting payment merchant binding.
|
|
14019
|
+
* @class
|
|
14020
|
+
*/
|
|
14021
|
+
class MerchantBindApprovalResp extends AbstractModel {
|
|
14022
|
+
constructor(){
|
|
14023
|
+
super();
|
|
14024
|
+
|
|
14025
|
+
/**
|
|
14026
|
+
* <p>Operation response result. A value of true indicates that the operation succeeded.</p>
|
|
14027
|
+
* @type {boolean || null}
|
|
14028
|
+
*/
|
|
14029
|
+
this.ApprovalResult = null;
|
|
14030
|
+
|
|
14031
|
+
/**
|
|
14032
|
+
* <p>Approval number. Required as an input parameter when calling the API to approve merchant binding.</p>
|
|
14033
|
+
* @type {string || null}
|
|
14034
|
+
*/
|
|
14035
|
+
this.ResourceId = null;
|
|
14036
|
+
|
|
14037
|
+
}
|
|
14038
|
+
|
|
14039
|
+
/**
|
|
14040
|
+
* @private
|
|
14041
|
+
*/
|
|
14042
|
+
deserialize(params) {
|
|
14043
|
+
if (!params) {
|
|
14044
|
+
return;
|
|
14045
|
+
}
|
|
14046
|
+
this.ApprovalResult = 'ApprovalResult' in params ? params.ApprovalResult : null;
|
|
14047
|
+
this.ResourceId = 'ResourceId' in params ? params.ResourceId : null;
|
|
14048
|
+
|
|
14049
|
+
}
|
|
14050
|
+
}
|
|
14051
|
+
|
|
13212
14052
|
/**
|
|
13213
14053
|
* DescribeMNGAccessAnalysisOverview request structure.
|
|
13214
14054
|
* @class
|
|
@@ -13997,7 +14837,13 @@ class CreateMNPRequest extends AbstractModel {
|
|
|
13997
14837
|
* <p>Mini program name and introduction in multiple languages.</p>
|
|
13998
14838
|
* @type {Array.<MNPI18NSyncDto> || null}
|
|
13999
14839
|
*/
|
|
14000
|
-
this.I18nList = null;
|
|
14840
|
+
this.I18nList = null;
|
|
14841
|
+
|
|
14842
|
+
/**
|
|
14843
|
+
* <p>Age rating information.</p>
|
|
14844
|
+
* @type {Array.<AgeRatingItemReq> || null}
|
|
14845
|
+
*/
|
|
14846
|
+
this.AgeRatings = null;
|
|
14001
14847
|
|
|
14002
14848
|
}
|
|
14003
14849
|
|
|
@@ -14025,6 +14871,15 @@ class CreateMNPRequest extends AbstractModel {
|
|
|
14025
14871
|
}
|
|
14026
14872
|
}
|
|
14027
14873
|
|
|
14874
|
+
if (params.AgeRatings) {
|
|
14875
|
+
this.AgeRatings = new Array();
|
|
14876
|
+
for (let z in params.AgeRatings) {
|
|
14877
|
+
let obj = new AgeRatingItemReq();
|
|
14878
|
+
obj.deserialize(params.AgeRatings[z]);
|
|
14879
|
+
this.AgeRatings.push(obj);
|
|
14880
|
+
}
|
|
14881
|
+
}
|
|
14882
|
+
|
|
14028
14883
|
}
|
|
14029
14884
|
}
|
|
14030
14885
|
|
|
@@ -14355,6 +15210,46 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
14355
15210
|
}
|
|
14356
15211
|
}
|
|
14357
15212
|
|
|
15213
|
+
/**
|
|
15214
|
+
* ApprovePaymentMerchantBinding response structure.
|
|
15215
|
+
* @class
|
|
15216
|
+
*/
|
|
15217
|
+
class ApprovePaymentMerchantBindingResponse extends AbstractModel {
|
|
15218
|
+
constructor(){
|
|
15219
|
+
super();
|
|
15220
|
+
|
|
15221
|
+
/**
|
|
15222
|
+
* <p>Approval result.</p>
|
|
15223
|
+
* @type {ApprovalPaymentV2MerchantBindRes || null}
|
|
15224
|
+
*/
|
|
15225
|
+
this.Data = null;
|
|
15226
|
+
|
|
15227
|
+
/**
|
|
15228
|
+
* 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.
|
|
15229
|
+
* @type {string || null}
|
|
15230
|
+
*/
|
|
15231
|
+
this.RequestId = null;
|
|
15232
|
+
|
|
15233
|
+
}
|
|
15234
|
+
|
|
15235
|
+
/**
|
|
15236
|
+
* @private
|
|
15237
|
+
*/
|
|
15238
|
+
deserialize(params) {
|
|
15239
|
+
if (!params) {
|
|
15240
|
+
return;
|
|
15241
|
+
}
|
|
15242
|
+
|
|
15243
|
+
if (params.Data) {
|
|
15244
|
+
let obj = new ApprovalPaymentV2MerchantBindRes();
|
|
15245
|
+
obj.deserialize(params.Data)
|
|
15246
|
+
this.Data = obj;
|
|
15247
|
+
}
|
|
15248
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
15249
|
+
|
|
15250
|
+
}
|
|
15251
|
+
}
|
|
15252
|
+
|
|
14358
15253
|
/**
|
|
14359
15254
|
* DescribeMNGActiveUserRealTimeStatistics response structure.
|
|
14360
15255
|
* @class
|
|
@@ -14523,6 +15418,84 @@ class CreateMNPVersionResponse extends AbstractModel {
|
|
|
14523
15418
|
}
|
|
14524
15419
|
}
|
|
14525
15420
|
|
|
15421
|
+
/**
|
|
15422
|
+
* Paginated mini program approval list.
|
|
15423
|
+
* @class
|
|
15424
|
+
*/
|
|
15425
|
+
class DescribeMNPApprovalListResp extends AbstractModel {
|
|
15426
|
+
constructor(){
|
|
15427
|
+
super();
|
|
15428
|
+
|
|
15429
|
+
/**
|
|
15430
|
+
* Total number of entries.
|
|
15431
|
+
* @type {number || null}
|
|
15432
|
+
*/
|
|
15433
|
+
this.TotalCount = null;
|
|
15434
|
+
|
|
15435
|
+
/**
|
|
15436
|
+
* List data.
|
|
15437
|
+
* @type {Array.<DescribeMNPApprovalListData> || null}
|
|
15438
|
+
*/
|
|
15439
|
+
this.DataList = null;
|
|
15440
|
+
|
|
15441
|
+
}
|
|
15442
|
+
|
|
15443
|
+
/**
|
|
15444
|
+
* @private
|
|
15445
|
+
*/
|
|
15446
|
+
deserialize(params) {
|
|
15447
|
+
if (!params) {
|
|
15448
|
+
return;
|
|
15449
|
+
}
|
|
15450
|
+
this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
|
|
15451
|
+
|
|
15452
|
+
if (params.DataList) {
|
|
15453
|
+
this.DataList = new Array();
|
|
15454
|
+
for (let z in params.DataList) {
|
|
15455
|
+
let obj = new DescribeMNPApprovalListData();
|
|
15456
|
+
obj.deserialize(params.DataList[z]);
|
|
15457
|
+
this.DataList.push(obj);
|
|
15458
|
+
}
|
|
15459
|
+
}
|
|
15460
|
+
|
|
15461
|
+
}
|
|
15462
|
+
}
|
|
15463
|
+
|
|
15464
|
+
/**
|
|
15465
|
+
* Response parameters structure for the superapp approving the activation of mini program payment.
|
|
15466
|
+
* @class
|
|
15467
|
+
*/
|
|
15468
|
+
class ApproveMNPPaymentOpenRes extends AbstractModel {
|
|
15469
|
+
constructor(){
|
|
15470
|
+
super();
|
|
15471
|
+
|
|
15472
|
+
/**
|
|
15473
|
+
* <p>Execution result of the API operation. Valid values: true: Operation succeeded; false: Operation failed.</p>
|
|
15474
|
+
* @type {boolean || null}
|
|
15475
|
+
*/
|
|
15476
|
+
this.Result = null;
|
|
15477
|
+
|
|
15478
|
+
/**
|
|
15479
|
+
* <p>The unique ID of the mini program payment activation. Used for the API where the superapp actively disables mini program payment.</p>
|
|
15480
|
+
* @type {number || null}
|
|
15481
|
+
*/
|
|
15482
|
+
this.ID = null;
|
|
15483
|
+
|
|
15484
|
+
}
|
|
15485
|
+
|
|
15486
|
+
/**
|
|
15487
|
+
* @private
|
|
15488
|
+
*/
|
|
15489
|
+
deserialize(params) {
|
|
15490
|
+
if (!params) {
|
|
15491
|
+
return;
|
|
15492
|
+
}
|
|
15493
|
+
this.Result = 'Result' in params ? params.Result : null;
|
|
15494
|
+
this.ID = 'ID' in params ? params.ID : null;
|
|
15495
|
+
|
|
15496
|
+
}
|
|
15497
|
+
}
|
|
15498
|
+
|
|
14526
15499
|
/**
|
|
14527
15500
|
* DescribeMNPActiveUserRealTimeStatistics response structure.
|
|
14528
15501
|
* @class
|
|
@@ -14847,6 +15820,55 @@ class DescribeMNPApprovalListResponse extends AbstractModel {
|
|
|
14847
15820
|
}
|
|
14848
15821
|
}
|
|
14849
15822
|
|
|
15823
|
+
/**
|
|
15824
|
+
* RequestPaymentMerchantBinding request structure.
|
|
15825
|
+
* @class
|
|
15826
|
+
*/
|
|
15827
|
+
class RequestPaymentMerchantBindingRequest extends AbstractModel {
|
|
15828
|
+
constructor(){
|
|
15829
|
+
super();
|
|
15830
|
+
|
|
15831
|
+
/**
|
|
15832
|
+
* <p>Platform ID.</p>
|
|
15833
|
+
* @type {string || null}
|
|
15834
|
+
*/
|
|
15835
|
+
this.PlatformId = null;
|
|
15836
|
+
|
|
15837
|
+
/**
|
|
15838
|
+
* <p>Mini program appid.</p>
|
|
15839
|
+
* @type {string || null}
|
|
15840
|
+
*/
|
|
15841
|
+
this.TeamId = null;
|
|
15842
|
+
|
|
15843
|
+
/**
|
|
15844
|
+
* <p>Merchant ID.</p>
|
|
15845
|
+
* @type {string || null}
|
|
15846
|
+
*/
|
|
15847
|
+
this.MerchantID = null;
|
|
15848
|
+
|
|
15849
|
+
/**
|
|
15850
|
+
* <p>Merchant name.</p>
|
|
15851
|
+
* @type {string || null}
|
|
15852
|
+
*/
|
|
15853
|
+
this.MerchantName = null;
|
|
15854
|
+
|
|
15855
|
+
}
|
|
15856
|
+
|
|
15857
|
+
/**
|
|
15858
|
+
* @private
|
|
15859
|
+
*/
|
|
15860
|
+
deserialize(params) {
|
|
15861
|
+
if (!params) {
|
|
15862
|
+
return;
|
|
15863
|
+
}
|
|
15864
|
+
this.PlatformId = 'PlatformId' in params ? params.PlatformId : null;
|
|
15865
|
+
this.TeamId = 'TeamId' in params ? params.TeamId : null;
|
|
15866
|
+
this.MerchantID = 'MerchantID' in params ? params.MerchantID : null;
|
|
15867
|
+
this.MerchantName = 'MerchantName' in params ? params.MerchantName : null;
|
|
15868
|
+
|
|
15869
|
+
}
|
|
15870
|
+
}
|
|
15871
|
+
|
|
14850
15872
|
/**
|
|
14851
15873
|
* Response for querying mini game subscription message template library details
|
|
14852
15874
|
* @class
|
|
@@ -15874,6 +16896,46 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
15874
16896
|
}
|
|
15875
16897
|
}
|
|
15876
16898
|
|
|
16899
|
+
/**
|
|
16900
|
+
* RequestPaymentMerchantBinding response structure.
|
|
16901
|
+
* @class
|
|
16902
|
+
*/
|
|
16903
|
+
class RequestPaymentMerchantBindingResponse extends AbstractModel {
|
|
16904
|
+
constructor(){
|
|
16905
|
+
super();
|
|
16906
|
+
|
|
16907
|
+
/**
|
|
16908
|
+
* <p>Response parameters structure for the application of a mini program team to bind a merchant ID.</p>
|
|
16909
|
+
* @type {MerchantBindApprovalResp || null}
|
|
16910
|
+
*/
|
|
16911
|
+
this.Data = null;
|
|
16912
|
+
|
|
16913
|
+
/**
|
|
16914
|
+
* 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.
|
|
16915
|
+
* @type {string || null}
|
|
16916
|
+
*/
|
|
16917
|
+
this.RequestId = null;
|
|
16918
|
+
|
|
16919
|
+
}
|
|
16920
|
+
|
|
16921
|
+
/**
|
|
16922
|
+
* @private
|
|
16923
|
+
*/
|
|
16924
|
+
deserialize(params) {
|
|
16925
|
+
if (!params) {
|
|
16926
|
+
return;
|
|
16927
|
+
}
|
|
16928
|
+
|
|
16929
|
+
if (params.Data) {
|
|
16930
|
+
let obj = new MerchantBindApprovalResp();
|
|
16931
|
+
obj.deserialize(params.Data)
|
|
16932
|
+
this.Data = obj;
|
|
16933
|
+
}
|
|
16934
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
16935
|
+
|
|
16936
|
+
}
|
|
16937
|
+
}
|
|
16938
|
+
|
|
15877
16939
|
/**
|
|
15878
16940
|
* Request object for creating a sensitive API.
|
|
15879
16941
|
* @class
|
|
@@ -16807,28 +17869,101 @@ class CreateMNPSensitiveAPIPermissionApprovalRequest extends AbstractModel {
|
|
|
16807
17869
|
super();
|
|
16808
17870
|
|
|
16809
17871
|
/**
|
|
16810
|
-
* API ID.
|
|
16811
|
-
* @type {string || null}
|
|
17872
|
+
* API ID.
|
|
17873
|
+
* @type {string || null}
|
|
17874
|
+
*/
|
|
17875
|
+
this.APIId = null;
|
|
17876
|
+
|
|
17877
|
+
/**
|
|
17878
|
+
* Reason for request.
|
|
17879
|
+
* @type {string || null}
|
|
17880
|
+
*/
|
|
17881
|
+
this.ApplyReason = null;
|
|
17882
|
+
|
|
17883
|
+
/**
|
|
17884
|
+
* Mini program appid.
|
|
17885
|
+
* @type {string || null}
|
|
17886
|
+
*/
|
|
17887
|
+
this.MNPId = null;
|
|
17888
|
+
|
|
17889
|
+
/**
|
|
17890
|
+
* Platform ID.
|
|
17891
|
+
* @type {string || null}
|
|
17892
|
+
*/
|
|
17893
|
+
this.PlatformId = null;
|
|
17894
|
+
|
|
17895
|
+
}
|
|
17896
|
+
|
|
17897
|
+
/**
|
|
17898
|
+
* @private
|
|
17899
|
+
*/
|
|
17900
|
+
deserialize(params) {
|
|
17901
|
+
if (!params) {
|
|
17902
|
+
return;
|
|
17903
|
+
}
|
|
17904
|
+
this.APIId = 'APIId' in params ? params.APIId : null;
|
|
17905
|
+
this.ApplyReason = 'ApplyReason' in params ? params.ApplyReason : null;
|
|
17906
|
+
this.MNPId = 'MNPId' in params ? params.MNPId : null;
|
|
17907
|
+
this.PlatformId = 'PlatformId' in params ? params.PlatformId : null;
|
|
17908
|
+
|
|
17909
|
+
}
|
|
17910
|
+
}
|
|
17911
|
+
|
|
17912
|
+
/**
|
|
17913
|
+
* Global overview data.
|
|
17914
|
+
* @class
|
|
17915
|
+
*/
|
|
17916
|
+
class Overview extends AbstractModel {
|
|
17917
|
+
constructor(){
|
|
17918
|
+
super();
|
|
17919
|
+
|
|
17920
|
+
/**
|
|
17921
|
+
* Number of superapps.
|
|
17922
|
+
* @type {number || null}
|
|
17923
|
+
*/
|
|
17924
|
+
this.AppNum = null;
|
|
17925
|
+
|
|
17926
|
+
/**
|
|
17927
|
+
* Number of teams.
|
|
17928
|
+
* @type {number || null}
|
|
17929
|
+
*/
|
|
17930
|
+
this.CorpNum = null;
|
|
17931
|
+
|
|
17932
|
+
/**
|
|
17933
|
+
* Refresh timestamp.
|
|
17934
|
+
* @type {string || null}
|
|
17935
|
+
*/
|
|
17936
|
+
this.FlushTime = null;
|
|
17937
|
+
|
|
17938
|
+
/**
|
|
17939
|
+
* Number of mini programs.
|
|
17940
|
+
* @type {number || null}
|
|
16812
17941
|
*/
|
|
16813
|
-
this.
|
|
17942
|
+
this.MiniAppNum = null;
|
|
16814
17943
|
|
|
16815
17944
|
/**
|
|
16816
|
-
*
|
|
16817
|
-
* @type {
|
|
17945
|
+
* Number of mini games.
|
|
17946
|
+
* @type {number || null}
|
|
16818
17947
|
*/
|
|
16819
|
-
this.
|
|
17948
|
+
this.MiniGameNum = null;
|
|
16820
17949
|
|
|
16821
17950
|
/**
|
|
16822
|
-
*
|
|
16823
|
-
* @type {
|
|
17951
|
+
* Number of mini game visits.
|
|
17952
|
+
* @type {number || null}
|
|
16824
17953
|
*/
|
|
16825
|
-
this.
|
|
17954
|
+
this.MiniGameVisitNum = null;
|
|
16826
17955
|
|
|
16827
17956
|
/**
|
|
16828
|
-
*
|
|
16829
|
-
* @type {
|
|
17957
|
+
* Number of mini program updates.
|
|
17958
|
+
* @type {number || null}
|
|
16830
17959
|
*/
|
|
16831
|
-
this.
|
|
17960
|
+
this.UpdateNum = null;
|
|
17961
|
+
|
|
17962
|
+
/**
|
|
17963
|
+
* Number of mini program visits.
|
|
17964
|
+
* @type {number || null}
|
|
17965
|
+
*/
|
|
17966
|
+
this.VisitNum = null;
|
|
16832
17967
|
|
|
16833
17968
|
}
|
|
16834
17969
|
|
|
@@ -16839,10 +17974,14 @@ class CreateMNPSensitiveAPIPermissionApprovalRequest extends AbstractModel {
|
|
|
16839
17974
|
if (!params) {
|
|
16840
17975
|
return;
|
|
16841
17976
|
}
|
|
16842
|
-
this.
|
|
16843
|
-
this.
|
|
16844
|
-
this.
|
|
16845
|
-
this.
|
|
17977
|
+
this.AppNum = 'AppNum' in params ? params.AppNum : null;
|
|
17978
|
+
this.CorpNum = 'CorpNum' in params ? params.CorpNum : null;
|
|
17979
|
+
this.FlushTime = 'FlushTime' in params ? params.FlushTime : null;
|
|
17980
|
+
this.MiniAppNum = 'MiniAppNum' in params ? params.MiniAppNum : null;
|
|
17981
|
+
this.MiniGameNum = 'MiniGameNum' in params ? params.MiniGameNum : null;
|
|
17982
|
+
this.MiniGameVisitNum = 'MiniGameVisitNum' in params ? params.MiniGameVisitNum : null;
|
|
17983
|
+
this.UpdateNum = 'UpdateNum' in params ? params.UpdateNum : null;
|
|
17984
|
+
this.VisitNum = 'VisitNum' in params ? params.VisitNum : null;
|
|
16846
17985
|
|
|
16847
17986
|
}
|
|
16848
17987
|
}
|
|
@@ -17031,89 +18170,95 @@ class DescribeApplicationMNPInfoResp extends AbstractModel {
|
|
|
17031
18170
|
super();
|
|
17032
18171
|
|
|
17033
18172
|
/**
|
|
17034
|
-
* Mini program or mini game appid
|
|
18173
|
+
* <p>Mini program or mini game appid.</p>
|
|
17035
18174
|
* @type {string || null}
|
|
17036
18175
|
*/
|
|
17037
18176
|
this.MNPId = null;
|
|
17038
18177
|
|
|
17039
18178
|
/**
|
|
17040
|
-
* Mini program or mini game icon
|
|
18179
|
+
* <p>Mini program or mini game icon.</p>
|
|
17041
18180
|
* @type {string || null}
|
|
17042
18181
|
*/
|
|
17043
18182
|
this.MNPIcon = null;
|
|
17044
18183
|
|
|
17045
18184
|
/**
|
|
17046
|
-
* Mini program or mini game name
|
|
18185
|
+
* <p>Mini program or mini game name.</p>
|
|
17047
18186
|
* @type {string || null}
|
|
17048
18187
|
*/
|
|
17049
18188
|
this.MNPName = null;
|
|
17050
18189
|
|
|
17051
18190
|
/**
|
|
17052
|
-
* Mini program or mini game
|
|
18191
|
+
* <p>Mini program or mini game introduction.</p>
|
|
17053
18192
|
* @type {string || null}
|
|
17054
18193
|
*/
|
|
17055
18194
|
this.MNPIntro = null;
|
|
17056
18195
|
|
|
17057
18196
|
/**
|
|
17058
|
-
* Creator
|
|
18197
|
+
* <p>Creator.</p>
|
|
17059
18198
|
* @type {string || null}
|
|
17060
18199
|
*/
|
|
17061
18200
|
this.CreateUser = null;
|
|
17062
18201
|
|
|
17063
18202
|
/**
|
|
17064
|
-
* Creation time
|
|
18203
|
+
* <p>Creation time.</p>
|
|
17065
18204
|
* @type {string || null}
|
|
17066
18205
|
*/
|
|
17067
18206
|
this.CreateTime = null;
|
|
17068
18207
|
|
|
17069
18208
|
/**
|
|
17070
|
-
* Last modifier
|
|
18209
|
+
* <p>Last modifier.</p>
|
|
17071
18210
|
* @type {string || null}
|
|
17072
18211
|
*/
|
|
17073
18212
|
this.UpdateUser = null;
|
|
17074
18213
|
|
|
17075
18214
|
/**
|
|
17076
|
-
* Last modified time
|
|
18215
|
+
* <p>Last modified time.</p>
|
|
17077
18216
|
* @type {string || null}
|
|
17078
18217
|
*/
|
|
17079
18218
|
this.UpdateTime = null;
|
|
17080
18219
|
|
|
17081
18220
|
/**
|
|
17082
|
-
* Available status. Valid value: 0: Not available; 1 Available; 2: In canary release
|
|
18221
|
+
* <p>Available status. Valid value: 0: Not available; 1 Available; 2: In canary release.</p>
|
|
17083
18222
|
* @type {number || null}
|
|
17084
18223
|
*/
|
|
17085
18224
|
this.OnlineStatus = null;
|
|
17086
18225
|
|
|
17087
18226
|
/**
|
|
17088
|
-
* Engine type. Specifies the runtime engine by product type. Valid values: 0: Mini program; 1: Mini game
|
|
18227
|
+
* <p>Engine type. Specifies the runtime engine by product type. Valid values: 0: Mini program; 1: Mini game.</p>
|
|
17089
18228
|
* @type {number || null}
|
|
17090
18229
|
*/
|
|
17091
18230
|
this.EngineType = null;
|
|
17092
18231
|
|
|
17093
18232
|
/**
|
|
17094
|
-
* Category information
|
|
18233
|
+
* <p>Category information.</p>
|
|
17095
18234
|
* @type {Array.<CategoryInfo> || null}
|
|
17096
18235
|
*/
|
|
17097
18236
|
this.CategoryList = null;
|
|
17098
18237
|
|
|
17099
18238
|
/**
|
|
17100
|
-
* Team ID
|
|
18239
|
+
* <p>Team ID.</p>
|
|
17101
18240
|
* @type {string || null}
|
|
17102
18241
|
*/
|
|
17103
18242
|
this.TeamId = null;
|
|
17104
18243
|
|
|
17105
18244
|
/**
|
|
17106
|
-
* Team name
|
|
18245
|
+
* <p>Team name.</p>
|
|
17107
18246
|
* @type {string || null}
|
|
17108
18247
|
*/
|
|
17109
18248
|
this.TeamName = null;
|
|
17110
18249
|
|
|
17111
18250
|
/**
|
|
17112
|
-
* Team type ID
|
|
18251
|
+
* <p>Team type ID.</p>
|
|
17113
18252
|
* @type {number || null}
|
|
17114
18253
|
*/
|
|
17115
18254
|
this.TeamTypeId = null;
|
|
17116
18255
|
|
|
18256
|
+
/**
|
|
18257
|
+
* <p>Age rating information.</p>
|
|
18258
|
+
* @type {Array.<AgeRatingItem> || null}
|
|
18259
|
+
*/
|
|
18260
|
+
this.AgeRatings = null;
|
|
18261
|
+
|
|
17117
18262
|
}
|
|
17118
18263
|
|
|
17119
18264
|
/**
|
|
@@ -17146,6 +18291,15 @@ class DescribeApplicationMNPInfoResp extends AbstractModel {
|
|
|
17146
18291
|
this.TeamName = 'TeamName' in params ? params.TeamName : null;
|
|
17147
18292
|
this.TeamTypeId = 'TeamTypeId' in params ? params.TeamTypeId : null;
|
|
17148
18293
|
|
|
18294
|
+
if (params.AgeRatings) {
|
|
18295
|
+
this.AgeRatings = new Array();
|
|
18296
|
+
for (let z in params.AgeRatings) {
|
|
18297
|
+
let obj = new AgeRatingItem();
|
|
18298
|
+
obj.deserialize(params.AgeRatings[z]);
|
|
18299
|
+
this.AgeRatings.push(obj);
|
|
18300
|
+
}
|
|
18301
|
+
}
|
|
18302
|
+
|
|
17149
18303
|
}
|
|
17150
18304
|
}
|
|
17151
18305
|
|
|
@@ -18149,24 +19303,36 @@ class DescribeMNGSubscribeMessageTemplateLibraryInfoResp extends AbstractModel
|
|
|
18149
19303
|
}
|
|
18150
19304
|
|
|
18151
19305
|
/**
|
|
18152
|
-
*
|
|
19306
|
+
* ChangePaymentBoundMerchant request structure.
|
|
18153
19307
|
* @class
|
|
18154
19308
|
*/
|
|
18155
|
-
class
|
|
19309
|
+
class ChangePaymentBoundMerchantRequest extends AbstractModel {
|
|
18156
19310
|
constructor(){
|
|
18157
19311
|
super();
|
|
18158
19312
|
|
|
18159
19313
|
/**
|
|
18160
|
-
* <p>
|
|
19314
|
+
* <p>Platform ID.</p>
|
|
18161
19315
|
* @type {string || null}
|
|
18162
19316
|
*/
|
|
18163
|
-
this.
|
|
19317
|
+
this.PlatformId = null;
|
|
18164
19318
|
|
|
18165
19319
|
/**
|
|
18166
|
-
* <p>
|
|
19320
|
+
* <p>Mini program appid.</p>
|
|
18167
19321
|
* @type {string || null}
|
|
18168
19322
|
*/
|
|
18169
|
-
this.
|
|
19323
|
+
this.TeamId = null;
|
|
19324
|
+
|
|
19325
|
+
/**
|
|
19326
|
+
* <p>Merchant ID.</p>
|
|
19327
|
+
* @type {string || null}
|
|
19328
|
+
*/
|
|
19329
|
+
this.MerchantID = null;
|
|
19330
|
+
|
|
19331
|
+
/**
|
|
19332
|
+
* <p>Merchant name.</p>
|
|
19333
|
+
* @type {string || null}
|
|
19334
|
+
*/
|
|
19335
|
+
this.MerchantName = null;
|
|
18170
19336
|
|
|
18171
19337
|
}
|
|
18172
19338
|
|
|
@@ -18177,8 +19343,10 @@ class DescribeMNGAllStageVersionsRequest extends AbstractModel {
|
|
|
18177
19343
|
if (!params) {
|
|
18178
19344
|
return;
|
|
18179
19345
|
}
|
|
18180
|
-
this.MNPId = 'MNPId' in params ? params.MNPId : null;
|
|
18181
19346
|
this.PlatformId = 'PlatformId' in params ? params.PlatformId : null;
|
|
19347
|
+
this.TeamId = 'TeamId' in params ? params.TeamId : null;
|
|
19348
|
+
this.MerchantID = 'MerchantID' in params ? params.MerchantID : null;
|
|
19349
|
+
this.MerchantName = 'MerchantName' in params ? params.MerchantName : null;
|
|
18182
19350
|
|
|
18183
19351
|
}
|
|
18184
19352
|
}
|
|
@@ -18452,11 +19620,23 @@ class DescribeMNGManagerDetailData extends AbstractModel {
|
|
|
18452
19620
|
this.I18nList = null;
|
|
18453
19621
|
|
|
18454
19622
|
/**
|
|
18455
|
-
* Team type ID. Valid values: 1: Mini program team; 2: Superapp team; 3: Service provider team
|
|
19623
|
+
* <p>Team type ID. Valid values: 1: Mini program team; 2: Superapp team; 3: Service provider team.</p>
|
|
18456
19624
|
* @type {number || null}
|
|
18457
19625
|
*/
|
|
18458
19626
|
this.TeamTypeId = null;
|
|
18459
19627
|
|
|
19628
|
+
/**
|
|
19629
|
+
* <p>Age rating information.</p>
|
|
19630
|
+
* @type {Array.<AgeRatingItem> || null}
|
|
19631
|
+
*/
|
|
19632
|
+
this.AgeRatings = null;
|
|
19633
|
+
|
|
19634
|
+
/**
|
|
19635
|
+
* <p>Merchant ID information bound to the team to which this mini program belongs.</p>
|
|
19636
|
+
* @type {string || null}
|
|
19637
|
+
*/
|
|
19638
|
+
this.MerchantId = null;
|
|
19639
|
+
|
|
18460
19640
|
}
|
|
18461
19641
|
|
|
18462
19642
|
/**
|
|
@@ -18489,6 +19669,16 @@ class DescribeMNGManagerDetailData extends AbstractModel {
|
|
|
18489
19669
|
}
|
|
18490
19670
|
this.TeamTypeId = 'TeamTypeId' in params ? params.TeamTypeId : null;
|
|
18491
19671
|
|
|
19672
|
+
if (params.AgeRatings) {
|
|
19673
|
+
this.AgeRatings = new Array();
|
|
19674
|
+
for (let z in params.AgeRatings) {
|
|
19675
|
+
let obj = new AgeRatingItem();
|
|
19676
|
+
obj.deserialize(params.AgeRatings[z]);
|
|
19677
|
+
this.AgeRatings.push(obj);
|
|
19678
|
+
}
|
|
19679
|
+
}
|
|
19680
|
+
this.MerchantId = 'MerchantId' in params ? params.MerchantId : null;
|
|
19681
|
+
|
|
18492
19682
|
}
|
|
18493
19683
|
}
|
|
18494
19684
|
|
|
@@ -18677,6 +19867,41 @@ class DescribeUserRequest extends AbstractModel {
|
|
|
18677
19867
|
}
|
|
18678
19868
|
}
|
|
18679
19869
|
|
|
19870
|
+
/**
|
|
19871
|
+
* Response parameters structure for changing the bound payment merchant.
|
|
19872
|
+
* @class
|
|
19873
|
+
*/
|
|
19874
|
+
class ChangePaymentV2BindMerchantRes extends AbstractModel {
|
|
19875
|
+
constructor(){
|
|
19876
|
+
super();
|
|
19877
|
+
|
|
19878
|
+
/**
|
|
19879
|
+
* <p>API response result. Valid values: true: Operation succeeded; false: Operation failed.</p>
|
|
19880
|
+
* @type {boolean || null}
|
|
19881
|
+
*/
|
|
19882
|
+
this.Result = null;
|
|
19883
|
+
|
|
19884
|
+
/**
|
|
19885
|
+
* <p>Approval number. Used for the API where the superapp approves the merchant binding of a mini program team.</p>
|
|
19886
|
+
* @type {string || null}
|
|
19887
|
+
*/
|
|
19888
|
+
this.ApprovalNo = null;
|
|
19889
|
+
|
|
19890
|
+
}
|
|
19891
|
+
|
|
19892
|
+
/**
|
|
19893
|
+
* @private
|
|
19894
|
+
*/
|
|
19895
|
+
deserialize(params) {
|
|
19896
|
+
if (!params) {
|
|
19897
|
+
return;
|
|
19898
|
+
}
|
|
19899
|
+
this.Result = 'Result' in params ? params.Result : null;
|
|
19900
|
+
this.ApprovalNo = 'ApprovalNo' in params ? params.ApprovalNo : null;
|
|
19901
|
+
|
|
19902
|
+
}
|
|
19903
|
+
}
|
|
19904
|
+
|
|
18680
19905
|
/**
|
|
18681
19906
|
* ModifyGlobalDomain request structure.
|
|
18682
19907
|
* @class
|
|
@@ -18981,6 +20206,12 @@ class ModifyMNPRequest extends AbstractModel {
|
|
|
18981
20206
|
*/
|
|
18982
20207
|
this.I18nList = null;
|
|
18983
20208
|
|
|
20209
|
+
/**
|
|
20210
|
+
* <p>Age rating information.</p>
|
|
20211
|
+
* @type {Array.<AgeRatingItemReq> || null}
|
|
20212
|
+
*/
|
|
20213
|
+
this.AgeRatings = null;
|
|
20214
|
+
|
|
18984
20215
|
}
|
|
18985
20216
|
|
|
18986
20217
|
/**
|
|
@@ -19007,6 +20238,15 @@ class ModifyMNPRequest extends AbstractModel {
|
|
|
19007
20238
|
}
|
|
19008
20239
|
}
|
|
19009
20240
|
|
|
20241
|
+
if (params.AgeRatings) {
|
|
20242
|
+
this.AgeRatings = new Array();
|
|
20243
|
+
for (let z in params.AgeRatings) {
|
|
20244
|
+
let obj = new AgeRatingItemReq();
|
|
20245
|
+
obj.deserialize(params.AgeRatings[z]);
|
|
20246
|
+
this.AgeRatings.push(obj);
|
|
20247
|
+
}
|
|
20248
|
+
}
|
|
20249
|
+
|
|
19010
20250
|
}
|
|
19011
20251
|
}
|
|
19012
20252
|
|
|
@@ -19226,6 +20466,46 @@ class DescribeMNPResponse extends AbstractModel {
|
|
|
19226
20466
|
}
|
|
19227
20467
|
}
|
|
19228
20468
|
|
|
20469
|
+
/**
|
|
20470
|
+
* RequestPaymentEnable response structure.
|
|
20471
|
+
* @class
|
|
20472
|
+
*/
|
|
20473
|
+
class RequestPaymentEnableResponse extends AbstractModel {
|
|
20474
|
+
constructor(){
|
|
20475
|
+
super();
|
|
20476
|
+
|
|
20477
|
+
/**
|
|
20478
|
+
* <p>Response parameters structure for mini program payment activation. The returned approval number is required when calling the API to approve payment activation.</p>
|
|
20479
|
+
* @type {ChangePaymentV2BindMerchantRes || null}
|
|
20480
|
+
*/
|
|
20481
|
+
this.Data = null;
|
|
20482
|
+
|
|
20483
|
+
/**
|
|
20484
|
+
* 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.
|
|
20485
|
+
* @type {string || null}
|
|
20486
|
+
*/
|
|
20487
|
+
this.RequestId = null;
|
|
20488
|
+
|
|
20489
|
+
}
|
|
20490
|
+
|
|
20491
|
+
/**
|
|
20492
|
+
* @private
|
|
20493
|
+
*/
|
|
20494
|
+
deserialize(params) {
|
|
20495
|
+
if (!params) {
|
|
20496
|
+
return;
|
|
20497
|
+
}
|
|
20498
|
+
|
|
20499
|
+
if (params.Data) {
|
|
20500
|
+
let obj = new ChangePaymentV2BindMerchantRes();
|
|
20501
|
+
obj.deserialize(params.Data)
|
|
20502
|
+
this.Data = obj;
|
|
20503
|
+
}
|
|
20504
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
20505
|
+
|
|
20506
|
+
}
|
|
20507
|
+
}
|
|
20508
|
+
|
|
19229
20509
|
/**
|
|
19230
20510
|
* DescribeMNPSubscribeMessageTemplateLibrary request structure.
|
|
19231
20511
|
* @class
|
|
@@ -19775,6 +21055,12 @@ class CreateMNGRequest extends AbstractModel {
|
|
|
19775
21055
|
*/
|
|
19776
21056
|
this.I18nList = null;
|
|
19777
21057
|
|
|
21058
|
+
/**
|
|
21059
|
+
* <p>Age rating information.</p>
|
|
21060
|
+
* @type {Array.<AgeRatingItemReq> || null}
|
|
21061
|
+
*/
|
|
21062
|
+
this.AgeRatings = null;
|
|
21063
|
+
|
|
19778
21064
|
}
|
|
19779
21065
|
|
|
19780
21066
|
/**
|
|
@@ -19801,6 +21087,15 @@ class CreateMNGRequest extends AbstractModel {
|
|
|
19801
21087
|
}
|
|
19802
21088
|
}
|
|
19803
21089
|
|
|
21090
|
+
if (params.AgeRatings) {
|
|
21091
|
+
this.AgeRatings = new Array();
|
|
21092
|
+
for (let z in params.AgeRatings) {
|
|
21093
|
+
let obj = new AgeRatingItemReq();
|
|
21094
|
+
obj.deserialize(params.AgeRatings[z]);
|
|
21095
|
+
this.AgeRatings.push(obj);
|
|
21096
|
+
}
|
|
21097
|
+
}
|
|
21098
|
+
|
|
19804
21099
|
}
|
|
19805
21100
|
}
|
|
19806
21101
|
|
|
@@ -19846,6 +21141,48 @@ class DescribeTempSecret4UploadFile2CosRequest extends AbstractModel {
|
|
|
19846
21141
|
}
|
|
19847
21142
|
}
|
|
19848
21143
|
|
|
21144
|
+
/**
|
|
21145
|
+
* UnbindMNPPaymentMerchant request structure.
|
|
21146
|
+
* @class
|
|
21147
|
+
*/
|
|
21148
|
+
class UnbindMNPPaymentMerchantRequest extends AbstractModel {
|
|
21149
|
+
constructor(){
|
|
21150
|
+
super();
|
|
21151
|
+
|
|
21152
|
+
/**
|
|
21153
|
+
* <p>Platform ID.</p>
|
|
21154
|
+
* @type {string || null}
|
|
21155
|
+
*/
|
|
21156
|
+
this.PlatformId = null;
|
|
21157
|
+
|
|
21158
|
+
/**
|
|
21159
|
+
* <p>Mini program team ID.</p>
|
|
21160
|
+
* @type {string || null}
|
|
21161
|
+
*/
|
|
21162
|
+
this.TeamId = null;
|
|
21163
|
+
|
|
21164
|
+
/**
|
|
21165
|
+
* <p>Primary key ID, obtained from the API response of approving the merchant binding of a mini program team.</p>
|
|
21166
|
+
* @type {string || null}
|
|
21167
|
+
*/
|
|
21168
|
+
this.ID = null;
|
|
21169
|
+
|
|
21170
|
+
}
|
|
21171
|
+
|
|
21172
|
+
/**
|
|
21173
|
+
* @private
|
|
21174
|
+
*/
|
|
21175
|
+
deserialize(params) {
|
|
21176
|
+
if (!params) {
|
|
21177
|
+
return;
|
|
21178
|
+
}
|
|
21179
|
+
this.PlatformId = 'PlatformId' in params ? params.PlatformId : null;
|
|
21180
|
+
this.TeamId = 'TeamId' in params ? params.TeamId : null;
|
|
21181
|
+
this.ID = 'ID' in params ? params.ID : null;
|
|
21182
|
+
|
|
21183
|
+
}
|
|
21184
|
+
}
|
|
21185
|
+
|
|
19849
21186
|
/**
|
|
19850
21187
|
* CreateMNGSubscribeMessageTemplate response structure.
|
|
19851
21188
|
* @class
|
|
@@ -20425,6 +21762,41 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
20425
21762
|
}
|
|
20426
21763
|
}
|
|
20427
21764
|
|
|
21765
|
+
/**
|
|
21766
|
+
* Age rating request.
|
|
21767
|
+
* @class
|
|
21768
|
+
*/
|
|
21769
|
+
class AgeRatingItemReq extends AbstractModel {
|
|
21770
|
+
constructor(){
|
|
21771
|
+
super();
|
|
21772
|
+
|
|
21773
|
+
/**
|
|
21774
|
+
* <p>Age rating standard.</p><p>Valid values:</p><ul><li>apple: Apple</li><li>iarc: Android.</li></ul>
|
|
21775
|
+
* @type {string || null}
|
|
21776
|
+
*/
|
|
21777
|
+
this.StandardId = null;
|
|
21778
|
+
|
|
21779
|
+
/**
|
|
21780
|
+
* <p>Applicable age for age rating.</p>
|
|
21781
|
+
* @type {number || null}
|
|
21782
|
+
*/
|
|
21783
|
+
this.AgeRating = null;
|
|
21784
|
+
|
|
21785
|
+
}
|
|
21786
|
+
|
|
21787
|
+
/**
|
|
21788
|
+
* @private
|
|
21789
|
+
*/
|
|
21790
|
+
deserialize(params) {
|
|
21791
|
+
if (!params) {
|
|
21792
|
+
return;
|
|
21793
|
+
}
|
|
21794
|
+
this.StandardId = 'StandardId' in params ? params.StandardId : null;
|
|
21795
|
+
this.AgeRating = 'AgeRating' in params ? params.AgeRating : null;
|
|
21796
|
+
|
|
21797
|
+
}
|
|
21798
|
+
}
|
|
21799
|
+
|
|
20428
21800
|
/**
|
|
20429
21801
|
* DescribeMNPReleasedVersionHistory response structure.
|
|
20430
21802
|
* @class
|
|
@@ -21403,8 +22775,10 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
21403
22775
|
|
|
21404
22776
|
module.exports = {
|
|
21405
22777
|
CreateMNPSubscribeMessageTemplateResponse: CreateMNPSubscribeMessageTemplateResponse,
|
|
22778
|
+
DisableMNPPaymentRequest: DisableMNPPaymentRequest,
|
|
21406
22779
|
DescribeMNGRetentionDataRequest: DescribeMNGRetentionDataRequest,
|
|
21407
22780
|
DescribeSubscribeMessageTemplateLibraryListResp: DescribeSubscribeMessageTemplateLibraryListResp,
|
|
22781
|
+
AgeRatingItem: AgeRatingItem,
|
|
21408
22782
|
DescribeMNGDomainInfoResp: DescribeMNGDomainInfoResp,
|
|
21409
22783
|
DeleteTeamMemberResponse: DeleteTeamMemberResponse,
|
|
21410
22784
|
DescribeMNPRetentionDataResponse: DescribeMNPRetentionDataResponse,
|
|
@@ -21415,6 +22789,7 @@ module.exports = {
|
|
|
21415
22789
|
ConfigureMNPPreviewResponse: ConfigureMNPPreviewResponse,
|
|
21416
22790
|
DescribeMNGAppSecretRequest: DescribeMNGAppSecretRequest,
|
|
21417
22791
|
DescribeMNPSensitiveAPIPermissionApprovalResponse: DescribeMNPSensitiveAPIPermissionApprovalResponse,
|
|
22792
|
+
UnbindMNPPaymentMerchantResponse: UnbindMNPPaymentMerchantResponse,
|
|
21418
22793
|
ReleaseMNGVersionResponse: ReleaseMNGVersionResponse,
|
|
21419
22794
|
DescribeMNGPaymentReportDetailRequest: DescribeMNGPaymentReportDetailRequest,
|
|
21420
22795
|
APPOverview: APPOverview,
|
|
@@ -21428,6 +22803,8 @@ module.exports = {
|
|
|
21428
22803
|
DescribeApplicationConfigInfosResponse: DescribeApplicationConfigInfosResponse,
|
|
21429
22804
|
DescribeGlobalOverviewReportDetailResponse: DescribeGlobalOverviewReportDetailResponse,
|
|
21430
22805
|
DescribeMNPMAUDataDetailRequest: DescribeMNPMAUDataDetailRequest,
|
|
22806
|
+
ApplyPaymentOpenDetailRes: ApplyPaymentOpenDetailRes,
|
|
22807
|
+
ApproveMNPPaymentEnableRequest: ApproveMNPPaymentEnableRequest,
|
|
21431
22808
|
CreateApplicationConfigRequest: CreateApplicationConfigRequest,
|
|
21432
22809
|
DescribeMNPAdvertisingDetailRequest: DescribeMNPAdvertisingDetailRequest,
|
|
21433
22810
|
PaymentDetail: PaymentDetail,
|
|
@@ -21445,13 +22822,16 @@ module.exports = {
|
|
|
21445
22822
|
ModifyMNGAppSecretStatusResponse: ModifyMNGAppSecretStatusResponse,
|
|
21446
22823
|
DescribeMNGSubscribeMessageTemplateLibraryResponse: DescribeMNGSubscribeMessageTemplateLibraryResponse,
|
|
21447
22824
|
DescribeMNPOfflinePackageURLResponse: DescribeMNPOfflinePackageURLResponse,
|
|
22825
|
+
UnbindPaymentMerchantResponse: UnbindPaymentMerchantResponse,
|
|
21448
22826
|
ApplicationConfigInfo: ApplicationConfigInfo,
|
|
21449
22827
|
DescribeApplicationSensitiveAPIListResponse: DescribeApplicationSensitiveAPIListResponse,
|
|
21450
22828
|
DescribeMNGSubscribeMessageTemplateLibraryListRequest: DescribeMNGSubscribeMessageTemplateLibraryListRequest,
|
|
22829
|
+
DescribeMNPTeamMerchantInfoRes: DescribeMNPTeamMerchantInfoRes,
|
|
21451
22830
|
DescribeApplicationMNPListRequest: DescribeApplicationMNPListRequest,
|
|
21452
|
-
DescribeAPPDataDetailLineChartResponse: DescribeAPPDataDetailLineChartResponse,
|
|
21453
22831
|
DescribeMNGReleasedVersionHistoryResponse: DescribeMNGReleasedVersionHistoryResponse,
|
|
22832
|
+
DescribeMNGAllStageVersionsRequest: DescribeMNGAllStageVersionsRequest,
|
|
21454
22833
|
DescribeMNPSensitiveAPIPermissionListResp: DescribeMNPSensitiveAPIPermissionListResp,
|
|
22834
|
+
ChangePaymentBoundMerchantResponse: ChangePaymentBoundMerchantResponse,
|
|
21455
22835
|
DescribeMNPSubscribeMessageTemplateListResp: DescribeMNPSubscribeMessageTemplateListResp,
|
|
21456
22836
|
DescribeMNGVersionResponse: DescribeMNGVersionResponse,
|
|
21457
22837
|
DescribeMNGSubscribeMessageTemplateLibraryListResponse: DescribeMNGSubscribeMessageTemplateLibraryListResponse,
|
|
@@ -21470,10 +22850,9 @@ module.exports = {
|
|
|
21470
22850
|
MNPSubscribeMessageTemplateDetailResp: MNPSubscribeMessageTemplateDetailResp,
|
|
21471
22851
|
DescribePaymentDataLineChartRequest: DescribePaymentDataLineChartRequest,
|
|
21472
22852
|
MNPI18NSyncDto: MNPI18NSyncDto,
|
|
21473
|
-
CreateDomainParam: CreateDomainParam,
|
|
21474
22853
|
DescribeMNPSensitiveAPIPermissionListResponse: DescribeMNPSensitiveAPIPermissionListResponse,
|
|
21475
22854
|
DescribePaymentDataDetailResponse: DescribePaymentDataDetailResponse,
|
|
21476
|
-
|
|
22855
|
+
CreateDomainParam: CreateDomainParam,
|
|
21477
22856
|
DescribeMNPAccessAnalysisOverviewResponse: DescribeMNPAccessAnalysisOverviewResponse,
|
|
21478
22857
|
ProcessMNPSensitiveAPIPermissionApprovalResponse: ProcessMNPSensitiveAPIPermissionApprovalResponse,
|
|
21479
22858
|
CreateMNPAppSecretResp: CreateMNPAppSecretResp,
|
|
@@ -21503,6 +22882,8 @@ module.exports = {
|
|
|
21503
22882
|
DescribeMNPCategoryResponse: DescribeMNPCategoryResponse,
|
|
21504
22883
|
DescribeRoleListResponse: DescribeRoleListResponse,
|
|
21505
22884
|
CreateMNPApprovalRequest: CreateMNPApprovalRequest,
|
|
22885
|
+
ApprovePaymentMerchantBindingRequest: ApprovePaymentMerchantBindingRequest,
|
|
22886
|
+
ApprovalPaymentV2MerchantBindRes: ApprovalPaymentV2MerchantBindRes,
|
|
21506
22887
|
DescribeMNGSensitiveAPIPermissionListRequest: DescribeMNGSensitiveAPIPermissionListRequest,
|
|
21507
22888
|
DescribeMNPPreviewResp: DescribeMNPPreviewResp,
|
|
21508
22889
|
DescribeMNGAdvertisingLineChartRequest: DescribeMNGAdvertisingLineChartRequest,
|
|
@@ -21523,7 +22904,7 @@ module.exports = {
|
|
|
21523
22904
|
DescribeGlobalOverviewDataSummaryResponse: DescribeGlobalOverviewDataSummaryResponse,
|
|
21524
22905
|
DeleteMNPSubscribeMessageTemplateResponse: DeleteMNPSubscribeMessageTemplateResponse,
|
|
21525
22906
|
ModifyGlobalDomainResponse: ModifyGlobalDomainResponse,
|
|
21526
|
-
|
|
22907
|
+
MAUDetailData: MAUDetailData,
|
|
21527
22908
|
PaymentActiveRetention: PaymentActiveRetention,
|
|
21528
22909
|
DescribeMNGSubscribeMessageTemplateListRequest: DescribeMNGSubscribeMessageTemplateListRequest,
|
|
21529
22910
|
DescribeMNGOfflinePackageURLResponse: DescribeMNGOfflinePackageURLResponse,
|
|
@@ -21533,6 +22914,7 @@ module.exports = {
|
|
|
21533
22914
|
DescribeMNGSubscribeMessageTemplateInfoResp: DescribeMNGSubscribeMessageTemplateInfoResp,
|
|
21534
22915
|
DescribeMNPListData: DescribeMNPListData,
|
|
21535
22916
|
DescribeMNGAccessAnalysisOverviewResponse: DescribeMNGAccessAnalysisOverviewResponse,
|
|
22917
|
+
UnbindPaymentMerchantRequest: UnbindPaymentMerchantRequest,
|
|
21536
22918
|
ModifyMNPDomainRequest: ModifyMNPDomainRequest,
|
|
21537
22919
|
ModifyMNGAppSecretStatusResp: ModifyMNGAppSecretStatusResp,
|
|
21538
22920
|
DeleteUserResponse: DeleteUserResponse,
|
|
@@ -21541,6 +22923,7 @@ module.exports = {
|
|
|
21541
22923
|
DescribeAdvertisingOverviewRequest: DescribeAdvertisingOverviewRequest,
|
|
21542
22924
|
DescribeAdvertisingLineChartRequest: DescribeAdvertisingLineChartRequest,
|
|
21543
22925
|
ResourceIdInfo: ResourceIdInfo,
|
|
22926
|
+
DisableMNPPaymentResponse: DisableMNPPaymentResponse,
|
|
21544
22927
|
DescribeMNGListResponse: DescribeMNGListResponse,
|
|
21545
22928
|
CreateMNPResponse: CreateMNPResponse,
|
|
21546
22929
|
DescribeMNGSensitiveAPIPermissionListResponse: DescribeMNGSensitiveAPIPermissionListResponse,
|
|
@@ -21548,12 +22931,14 @@ module.exports = {
|
|
|
21548
22931
|
DescribeUserListResponse: DescribeUserListResponse,
|
|
21549
22932
|
ModifyMNPAppSecretStatusRequest: ModifyMNPAppSecretStatusRequest,
|
|
21550
22933
|
DeleteTeamMemberRequest: DeleteTeamMemberRequest,
|
|
22934
|
+
DescribeMNPPaymentApprovalInfoRequest: DescribeMNPPaymentApprovalInfoRequest,
|
|
22935
|
+
RetentionData: RetentionData,
|
|
21551
22936
|
ResetMNPAppSecretRequest: ResetMNPAppSecretRequest,
|
|
21552
22937
|
DescribeMNPReportDataLineChartResponse: DescribeMNPReportDataLineChartResponse,
|
|
21553
22938
|
DescribeMNPSensitiveAPIPermissionListData: DescribeMNPSensitiveAPIPermissionListData,
|
|
21554
22939
|
DescribeMNGVersionRequest: DescribeMNGVersionRequest,
|
|
21555
22940
|
DescribeTempSecret4UploadFile2CosResponse: DescribeTempSecret4UploadFile2CosResponse,
|
|
21556
|
-
|
|
22941
|
+
ApproveMNPPaymentEnableResponse: ApproveMNPPaymentEnableResponse,
|
|
21557
22942
|
DescribeUserDetailResp: DescribeUserDetailResp,
|
|
21558
22943
|
DescribeMNPReleasedVersionHistoryRequest: DescribeMNPReleasedVersionHistoryRequest,
|
|
21559
22944
|
CreateMNPSensitiveAPIPermissionApprovalResponse: CreateMNPSensitiveAPIPermissionApprovalResponse,
|
|
@@ -21571,7 +22956,7 @@ module.exports = {
|
|
|
21571
22956
|
CreateMNGVersionResp: CreateMNGVersionResp,
|
|
21572
22957
|
RollbackMNPVersionResponse: RollbackMNPVersionResponse,
|
|
21573
22958
|
DescribeMNPApprovalListRequest: DescribeMNPApprovalListRequest,
|
|
21574
|
-
|
|
22959
|
+
DescribeMNGPaymentRetentionAnalysisResponse: DescribeMNGPaymentRetentionAnalysisResponse,
|
|
21575
22960
|
DescribeGlobalDomainsListData: DescribeGlobalDomainsListData,
|
|
21576
22961
|
DescribeMNPManagerDetailData: DescribeMNPManagerDetailData,
|
|
21577
22962
|
DescribeUserListRequest: DescribeUserListRequest,
|
|
@@ -21580,6 +22965,7 @@ module.exports = {
|
|
|
21580
22965
|
DescribeMNPSubscribeMessageTemplateInfoResp: DescribeMNPSubscribeMessageTemplateInfoResp,
|
|
21581
22966
|
DescribeMNPMAUDataDetailResponse: DescribeMNPMAUDataDetailResponse,
|
|
21582
22967
|
DescribeMNPReportDetailRequest: DescribeMNPReportDetailRequest,
|
|
22968
|
+
QueryMNPMerchantInfoRequest: QueryMNPMerchantInfoRequest,
|
|
21583
22969
|
ModifyMNGDomainResponse: ModifyMNGDomainResponse,
|
|
21584
22970
|
DescribeMNGPaymentReportDetailResponse: DescribeMNGPaymentReportDetailResponse,
|
|
21585
22971
|
DescribeApplicationConfigFileResponse: DescribeApplicationConfigFileResponse,
|
|
@@ -21610,6 +22996,7 @@ module.exports = {
|
|
|
21610
22996
|
DescribeMNGMAUMonthlyComparisonMetricCardRequest: DescribeMNGMAUMonthlyComparisonMetricCardRequest,
|
|
21611
22997
|
DescribePaymentDataLineChartResponse: DescribePaymentDataLineChartResponse,
|
|
21612
22998
|
DescribeMNGAdvertisingDetailRequest: DescribeMNGAdvertisingDetailRequest,
|
|
22999
|
+
QueryMNPMerchantInfoResponse: QueryMNPMerchantInfoResponse,
|
|
21613
23000
|
DescribeMNPPreviewResponse: DescribeMNPPreviewResponse,
|
|
21614
23001
|
AdvertDataOverview: AdvertDataOverview,
|
|
21615
23002
|
DescribeMNPListResponse: DescribeMNPListResponse,
|
|
@@ -21624,9 +23011,9 @@ module.exports = {
|
|
|
21624
23011
|
DescribeRoleListRequest: DescribeRoleListRequest,
|
|
21625
23012
|
DescribeMNGMAUDataDetailRequest: DescribeMNGMAUDataDetailRequest,
|
|
21626
23013
|
DescribeMNGSubscribeMessageTemplateLibraryRequest: DescribeMNGSubscribeMessageTemplateLibraryRequest,
|
|
21627
|
-
|
|
23014
|
+
MAUDetail: MAUDetail,
|
|
21628
23015
|
DescribeMNGPreviewResponse: DescribeMNGPreviewResponse,
|
|
21629
|
-
|
|
23016
|
+
DescribeAPPDataDetailLineChartResponse: DescribeAPPDataDetailLineChartResponse,
|
|
21630
23017
|
DescribeApplicationListResponse: DescribeApplicationListResponse,
|
|
21631
23018
|
DescribeRoleListResp: DescribeRoleListResp,
|
|
21632
23019
|
DescribeTeamListInfoResp: DescribeTeamListInfoResp,
|
|
@@ -21635,7 +23022,7 @@ module.exports = {
|
|
|
21635
23022
|
DescribeUserListResp: DescribeUserListResp,
|
|
21636
23023
|
QueryOnlineVersionResp: QueryOnlineVersionResp,
|
|
21637
23024
|
MNPTypeDefine: MNPTypeDefine,
|
|
21638
|
-
|
|
23025
|
+
DescribeMNGCategoryRequest: DescribeMNGCategoryRequest,
|
|
21639
23026
|
DescribeSubscribeMessageTemplateLibraryResp: DescribeSubscribeMessageTemplateLibraryResp,
|
|
21640
23027
|
DescribeApplicationConfigInfosRequest: DescribeApplicationConfigInfosRequest,
|
|
21641
23028
|
CreateTeamMemberInfoReq: CreateTeamMemberInfoReq,
|
|
@@ -21643,8 +23030,10 @@ module.exports = {
|
|
|
21643
23030
|
CreateUserResponse: CreateUserResponse,
|
|
21644
23031
|
CreateMNPSecretKeyResponse: CreateMNPSecretKeyResponse,
|
|
21645
23032
|
RemoveMNGResponse: RemoveMNGResponse,
|
|
23033
|
+
DescribeMNPPaymentApprovalInfoResponse: DescribeMNPPaymentApprovalInfoResponse,
|
|
21646
23034
|
CategoryItem: CategoryItem,
|
|
21647
|
-
|
|
23035
|
+
DeleteMNPSubscribeMessageTemplateRequest: DeleteMNPSubscribeMessageTemplateRequest,
|
|
23036
|
+
RequestPaymentEnableRequest: RequestPaymentEnableRequest,
|
|
21648
23037
|
DescribeMNGReleasedVersionHistoryRequest: DescribeMNGReleasedVersionHistoryRequest,
|
|
21649
23038
|
ProcessMNPApprovalRequest: ProcessMNPApprovalRequest,
|
|
21650
23039
|
DescribeMNGSensitiveAPIPermissionApprovalData: DescribeMNGSensitiveAPIPermissionApprovalData,
|
|
@@ -21652,6 +23041,7 @@ module.exports = {
|
|
|
21652
23041
|
DescribeMNPDomainACLRequest: DescribeMNPDomainACLRequest,
|
|
21653
23042
|
DescribeMNGRetentionDataResponse: DescribeMNGRetentionDataResponse,
|
|
21654
23043
|
DescribeMNGPaymentLineChartResponse: DescribeMNGPaymentLineChartResponse,
|
|
23044
|
+
MerchantBindApprovalResp: MerchantBindApprovalResp,
|
|
21655
23045
|
DescribeMNGAccessAnalysisOverviewRequest: DescribeMNGAccessAnalysisOverviewRequest,
|
|
21656
23046
|
DescribeUserResponse: DescribeUserResponse,
|
|
21657
23047
|
DisableApplicationSensitiveAPIRequest: DisableApplicationSensitiveAPIRequest,
|
|
@@ -21675,10 +23065,13 @@ module.exports = {
|
|
|
21675
23065
|
CreateMNGDomainACLResponse: CreateMNGDomainACLResponse,
|
|
21676
23066
|
AnalysisAdvertOverview: AnalysisAdvertOverview,
|
|
21677
23067
|
AdTrendChart: AdTrendChart,
|
|
23068
|
+
ApprovePaymentMerchantBindingResponse: ApprovePaymentMerchantBindingResponse,
|
|
21678
23069
|
DescribeMNGActiveUserRealTimeStatisticsResponse: DescribeMNGActiveUserRealTimeStatisticsResponse,
|
|
21679
23070
|
ResetMNGAppSecretResponse: ResetMNGAppSecretResponse,
|
|
21680
23071
|
DescribeMNGSubscribeMessageTemplateLibraryListResp: DescribeMNGSubscribeMessageTemplateLibraryListResp,
|
|
21681
23072
|
CreateMNPVersionResponse: CreateMNPVersionResponse,
|
|
23073
|
+
DescribeMNPApprovalListResp: DescribeMNPApprovalListResp,
|
|
23074
|
+
ApproveMNPPaymentOpenRes: ApproveMNPPaymentOpenRes,
|
|
21682
23075
|
DescribeMNPActiveUserRealTimeStatisticsResponse: DescribeMNPActiveUserRealTimeStatisticsResponse,
|
|
21683
23076
|
ModifyMNPResponse: ModifyMNPResponse,
|
|
21684
23077
|
DescribeMNPPageAnalysisDetailResponse: DescribeMNPPageAnalysisDetailResponse,
|
|
@@ -21687,6 +23080,7 @@ module.exports = {
|
|
|
21687
23080
|
BooleanInfo: BooleanInfo,
|
|
21688
23081
|
DescribeTeamListRequest: DescribeTeamListRequest,
|
|
21689
23082
|
DescribeMNPApprovalListResponse: DescribeMNPApprovalListResponse,
|
|
23083
|
+
RequestPaymentMerchantBindingRequest: RequestPaymentMerchantBindingRequest,
|
|
21690
23084
|
DescribeMNGSubscribeMessageTemplateLibraryKeywordInfoResp: DescribeMNGSubscribeMessageTemplateLibraryKeywordInfoResp,
|
|
21691
23085
|
CreateMNGAppSecretResp: CreateMNGAppSecretResp,
|
|
21692
23086
|
AccessAnalysisOverview: AccessAnalysisOverview,
|
|
@@ -21707,6 +23101,7 @@ module.exports = {
|
|
|
21707
23101
|
ModifyMNPAppSecretStatusResponse: ModifyMNPAppSecretStatusResponse,
|
|
21708
23102
|
RemoveMNGRequest: RemoveMNGRequest,
|
|
21709
23103
|
DescribeAdvertisingOverviewResponse: DescribeAdvertisingOverviewResponse,
|
|
23104
|
+
RequestPaymentMerchantBindingResponse: RequestPaymentMerchantBindingResponse,
|
|
21710
23105
|
CreateApplicationSensitiveAPIReq: CreateApplicationSensitiveAPIReq,
|
|
21711
23106
|
CreateMNGVersionResponse: CreateMNGVersionResponse,
|
|
21712
23107
|
DescribeMNGSensitiveAPIPermissionApprovalResponse: DescribeMNGSensitiveAPIPermissionApprovalResponse,
|
|
@@ -21724,6 +23119,7 @@ module.exports = {
|
|
|
21724
23119
|
DescribeMNPReportDetailResponse: DescribeMNPReportDetailResponse,
|
|
21725
23120
|
DescribePaymentDataOverviewRequest: DescribePaymentDataOverviewRequest,
|
|
21726
23121
|
CreateMNPSensitiveAPIPermissionApprovalRequest: CreateMNPSensitiveAPIPermissionApprovalRequest,
|
|
23122
|
+
Overview: Overview,
|
|
21727
23123
|
DeleteMNGSubscribeMessageTemplateRequest: DeleteMNGSubscribeMessageTemplateRequest,
|
|
21728
23124
|
DescribeApplicationListData: DescribeApplicationListData,
|
|
21729
23125
|
DescribeApplicationMNPInfoResp: DescribeApplicationMNPInfoResp,
|
|
@@ -21745,7 +23141,7 @@ module.exports = {
|
|
|
21745
23141
|
DescribeMNPReportDataLineChartRequest: DescribeMNPReportDataLineChartRequest,
|
|
21746
23142
|
DescribeMNPSensitiveAPIPermissionApprovalListResp: DescribeMNPSensitiveAPIPermissionApprovalListResp,
|
|
21747
23143
|
DescribeMNGSubscribeMessageTemplateLibraryInfoResp: DescribeMNGSubscribeMessageTemplateLibraryInfoResp,
|
|
21748
|
-
|
|
23144
|
+
ChangePaymentBoundMerchantRequest: ChangePaymentBoundMerchantRequest,
|
|
21749
23145
|
DescribeMNPSensitiveAPIPermissionApprovalListRequest: DescribeMNPSensitiveAPIPermissionApprovalListRequest,
|
|
21750
23146
|
DescribeMNGListRequest: DescribeMNGListRequest,
|
|
21751
23147
|
DescribeMNGAdvertisingOverviewRequest: DescribeMNGAdvertisingOverviewRequest,
|
|
@@ -21755,6 +23151,7 @@ module.exports = {
|
|
|
21755
23151
|
DescribeMNPAllStageVersionsRequest: DescribeMNPAllStageVersionsRequest,
|
|
21756
23152
|
CreateMNPSecretKeyResp: CreateMNPSecretKeyResp,
|
|
21757
23153
|
DescribeUserRequest: DescribeUserRequest,
|
|
23154
|
+
ChangePaymentV2BindMerchantRes: ChangePaymentV2BindMerchantRes,
|
|
21758
23155
|
ModifyGlobalDomainRequest: ModifyGlobalDomainRequest,
|
|
21759
23156
|
ModifyTeamMemberResponse: ModifyTeamMemberResponse,
|
|
21760
23157
|
AddTeamMemberResponse: AddTeamMemberResponse,
|
|
@@ -21766,6 +23163,7 @@ module.exports = {
|
|
|
21766
23163
|
CreateApplicationSensitiveAPIRequest: CreateApplicationSensitiveAPIRequest,
|
|
21767
23164
|
ReleaseMNPVersionRequest: ReleaseMNPVersionRequest,
|
|
21768
23165
|
DescribeMNPResponse: DescribeMNPResponse,
|
|
23166
|
+
RequestPaymentEnableResponse: RequestPaymentEnableResponse,
|
|
21769
23167
|
DescribeMNPSubscribeMessageTemplateLibraryRequest: DescribeMNPSubscribeMessageTemplateLibraryRequest,
|
|
21770
23168
|
DescribeAPPDataOverviewRequest: DescribeAPPDataOverviewRequest,
|
|
21771
23169
|
DescribeMNGDomainACLResponse: DescribeMNGDomainACLResponse,
|
|
@@ -21778,6 +23176,7 @@ module.exports = {
|
|
|
21778
23176
|
DescribeMNPSubscribeMessageTemplateDetailResp: DescribeMNPSubscribeMessageTemplateDetailResp,
|
|
21779
23177
|
CreateMNGRequest: CreateMNGRequest,
|
|
21780
23178
|
DescribeTempSecret4UploadFile2CosRequest: DescribeTempSecret4UploadFile2CosRequest,
|
|
23179
|
+
UnbindMNPPaymentMerchantRequest: UnbindMNPPaymentMerchantRequest,
|
|
21781
23180
|
CreateMNGSubscribeMessageTemplateResponse: CreateMNGSubscribeMessageTemplateResponse,
|
|
21782
23181
|
DescribeApplicationRequest: DescribeApplicationRequest,
|
|
21783
23182
|
DescribeMNPDomainACLResponse: DescribeMNPDomainACLResponse,
|
|
@@ -21791,6 +23190,7 @@ module.exports = {
|
|
|
21791
23190
|
DescribeMNPAppSecretResponse: DescribeMNPAppSecretResponse,
|
|
21792
23191
|
StringData: StringData,
|
|
21793
23192
|
MAULineChartData: MAULineChartData,
|
|
23193
|
+
AgeRatingItemReq: AgeRatingItemReq,
|
|
21794
23194
|
DescribeMNPReleasedVersionHistoryResponse: DescribeMNPReleasedVersionHistoryResponse,
|
|
21795
23195
|
ApprovalItem: ApprovalItem,
|
|
21796
23196
|
ReportDataResult: ReportDataResult,
|