@alicloud/dm20151123 1.0.9 → 1.0.11
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/dist/client.d.ts +123 -114
- package/dist/client.js +45 -2
- package/dist/client.js.map +1 -1
- package/package.json +3 -3
- package/src/client.ts +157 -114
package/src/client.ts
CHANGED
|
@@ -59,9 +59,9 @@ export class AddIpfilterResponseBody extends $tea.Model {
|
|
|
59
59
|
}
|
|
60
60
|
|
|
61
61
|
export class AddIpfilterResponse extends $tea.Model {
|
|
62
|
-
headers
|
|
63
|
-
statusCode
|
|
64
|
-
body
|
|
62
|
+
headers?: { [key: string]: string };
|
|
63
|
+
statusCode?: number;
|
|
64
|
+
body?: AddIpfilterResponseBody;
|
|
65
65
|
static names(): { [key: string]: string } {
|
|
66
66
|
return {
|
|
67
67
|
headers: 'headers',
|
|
@@ -131,9 +131,9 @@ export class ApproveReplyMailAddressResponseBody extends $tea.Model {
|
|
|
131
131
|
}
|
|
132
132
|
|
|
133
133
|
export class ApproveReplyMailAddressResponse extends $tea.Model {
|
|
134
|
-
headers
|
|
135
|
-
statusCode
|
|
136
|
-
body
|
|
134
|
+
headers?: { [key: string]: string };
|
|
135
|
+
statusCode?: number;
|
|
136
|
+
body?: ApproveReplyMailAddressResponseBody;
|
|
137
137
|
static names(): { [key: string]: string } {
|
|
138
138
|
return {
|
|
139
139
|
headers: 'headers',
|
|
@@ -167,6 +167,8 @@ export class BatchSendMailRequest extends $tea.Model {
|
|
|
167
167
|
resourceOwnerId?: number;
|
|
168
168
|
tagName?: string;
|
|
169
169
|
templateName?: string;
|
|
170
|
+
unSubscribeFilterLevel?: string;
|
|
171
|
+
unSubscribeLinkType?: string;
|
|
170
172
|
static names(): { [key: string]: string } {
|
|
171
173
|
return {
|
|
172
174
|
accountName: 'AccountName',
|
|
@@ -180,6 +182,8 @@ export class BatchSendMailRequest extends $tea.Model {
|
|
|
180
182
|
resourceOwnerId: 'ResourceOwnerId',
|
|
181
183
|
tagName: 'TagName',
|
|
182
184
|
templateName: 'TemplateName',
|
|
185
|
+
unSubscribeFilterLevel: 'UnSubscribeFilterLevel',
|
|
186
|
+
unSubscribeLinkType: 'UnSubscribeLinkType',
|
|
183
187
|
};
|
|
184
188
|
}
|
|
185
189
|
|
|
@@ -196,6 +200,8 @@ export class BatchSendMailRequest extends $tea.Model {
|
|
|
196
200
|
resourceOwnerId: 'number',
|
|
197
201
|
tagName: 'string',
|
|
198
202
|
templateName: 'string',
|
|
203
|
+
unSubscribeFilterLevel: 'string',
|
|
204
|
+
unSubscribeLinkType: 'string',
|
|
199
205
|
};
|
|
200
206
|
}
|
|
201
207
|
|
|
@@ -227,9 +233,9 @@ export class BatchSendMailResponseBody extends $tea.Model {
|
|
|
227
233
|
}
|
|
228
234
|
|
|
229
235
|
export class BatchSendMailResponse extends $tea.Model {
|
|
230
|
-
headers
|
|
231
|
-
statusCode
|
|
232
|
-
body
|
|
236
|
+
headers?: { [key: string]: string };
|
|
237
|
+
statusCode?: number;
|
|
238
|
+
body?: BatchSendMailResponseBody;
|
|
233
239
|
static names(): { [key: string]: string } {
|
|
234
240
|
return {
|
|
235
241
|
headers: 'headers',
|
|
@@ -302,9 +308,9 @@ export class CheckDomainResponseBody extends $tea.Model {
|
|
|
302
308
|
}
|
|
303
309
|
|
|
304
310
|
export class CheckDomainResponse extends $tea.Model {
|
|
305
|
-
headers
|
|
306
|
-
statusCode
|
|
307
|
-
body
|
|
311
|
+
headers?: { [key: string]: string };
|
|
312
|
+
statusCode?: number;
|
|
313
|
+
body?: CheckDomainResponseBody;
|
|
308
314
|
static names(): { [key: string]: string } {
|
|
309
315
|
return {
|
|
310
316
|
headers: 'headers',
|
|
@@ -380,9 +386,9 @@ export class CheckReplyToMailAddressResponseBody extends $tea.Model {
|
|
|
380
386
|
}
|
|
381
387
|
|
|
382
388
|
export class CheckReplyToMailAddressResponse extends $tea.Model {
|
|
383
|
-
headers
|
|
384
|
-
statusCode
|
|
385
|
-
body
|
|
389
|
+
headers?: { [key: string]: string };
|
|
390
|
+
statusCode?: number;
|
|
391
|
+
body?: CheckReplyToMailAddressResponseBody;
|
|
386
392
|
static names(): { [key: string]: string } {
|
|
387
393
|
return {
|
|
388
394
|
headers: 'headers',
|
|
@@ -455,9 +461,9 @@ export class CreateDomainResponseBody extends $tea.Model {
|
|
|
455
461
|
}
|
|
456
462
|
|
|
457
463
|
export class CreateDomainResponse extends $tea.Model {
|
|
458
|
-
headers
|
|
459
|
-
statusCode
|
|
460
|
-
body
|
|
464
|
+
headers?: { [key: string]: string };
|
|
465
|
+
statusCode?: number;
|
|
466
|
+
body?: CreateDomainResponseBody;
|
|
461
467
|
static names(): { [key: string]: string } {
|
|
462
468
|
return {
|
|
463
469
|
headers: 'headers',
|
|
@@ -536,9 +542,9 @@ export class CreateMailAddressResponseBody extends $tea.Model {
|
|
|
536
542
|
}
|
|
537
543
|
|
|
538
544
|
export class CreateMailAddressResponse extends $tea.Model {
|
|
539
|
-
headers
|
|
540
|
-
statusCode
|
|
541
|
-
body
|
|
545
|
+
headers?: { [key: string]: string };
|
|
546
|
+
statusCode?: number;
|
|
547
|
+
body?: CreateMailAddressResponseBody;
|
|
542
548
|
static names(): { [key: string]: string } {
|
|
543
549
|
return {
|
|
544
550
|
headers: 'headers',
|
|
@@ -617,9 +623,9 @@ export class CreateReceiverResponseBody extends $tea.Model {
|
|
|
617
623
|
}
|
|
618
624
|
|
|
619
625
|
export class CreateReceiverResponse extends $tea.Model {
|
|
620
|
-
headers
|
|
621
|
-
statusCode
|
|
622
|
-
body
|
|
626
|
+
headers?: { [key: string]: string };
|
|
627
|
+
statusCode?: number;
|
|
628
|
+
body?: CreateReceiverResponseBody;
|
|
623
629
|
static names(): { [key: string]: string } {
|
|
624
630
|
return {
|
|
625
631
|
headers: 'headers',
|
|
@@ -695,9 +701,9 @@ export class CreateTagResponseBody extends $tea.Model {
|
|
|
695
701
|
}
|
|
696
702
|
|
|
697
703
|
export class CreateTagResponse extends $tea.Model {
|
|
698
|
-
headers
|
|
699
|
-
statusCode
|
|
700
|
-
body
|
|
704
|
+
headers?: { [key: string]: string };
|
|
705
|
+
statusCode?: number;
|
|
706
|
+
body?: CreateTagResponseBody;
|
|
701
707
|
static names(): { [key: string]: string } {
|
|
702
708
|
return {
|
|
703
709
|
headers: 'headers',
|
|
@@ -767,9 +773,9 @@ export class DeleteDomainResponseBody extends $tea.Model {
|
|
|
767
773
|
}
|
|
768
774
|
|
|
769
775
|
export class DeleteDomainResponse extends $tea.Model {
|
|
770
|
-
headers
|
|
771
|
-
statusCode
|
|
772
|
-
body
|
|
776
|
+
headers?: { [key: string]: string };
|
|
777
|
+
statusCode?: number;
|
|
778
|
+
body?: DeleteDomainResponseBody;
|
|
773
779
|
static names(): { [key: string]: string } {
|
|
774
780
|
return {
|
|
775
781
|
headers: 'headers',
|
|
@@ -839,9 +845,9 @@ export class DeleteInvalidAddressResponseBody extends $tea.Model {
|
|
|
839
845
|
}
|
|
840
846
|
|
|
841
847
|
export class DeleteInvalidAddressResponse extends $tea.Model {
|
|
842
|
-
headers
|
|
843
|
-
statusCode
|
|
844
|
-
body
|
|
848
|
+
headers?: { [key: string]: string };
|
|
849
|
+
statusCode?: number;
|
|
850
|
+
body?: DeleteInvalidAddressResponseBody;
|
|
845
851
|
static names(): { [key: string]: string } {
|
|
846
852
|
return {
|
|
847
853
|
headers: 'headers',
|
|
@@ -914,9 +920,9 @@ export class DeleteIpfilterByEdmIdResponseBody extends $tea.Model {
|
|
|
914
920
|
}
|
|
915
921
|
|
|
916
922
|
export class DeleteIpfilterByEdmIdResponse extends $tea.Model {
|
|
917
|
-
headers
|
|
918
|
-
statusCode
|
|
919
|
-
body
|
|
923
|
+
headers?: { [key: string]: string };
|
|
924
|
+
statusCode?: number;
|
|
925
|
+
body?: DeleteIpfilterByEdmIdResponseBody;
|
|
920
926
|
static names(): { [key: string]: string } {
|
|
921
927
|
return {
|
|
922
928
|
headers: 'headers',
|
|
@@ -986,9 +992,9 @@ export class DeleteMailAddressResponseBody extends $tea.Model {
|
|
|
986
992
|
}
|
|
987
993
|
|
|
988
994
|
export class DeleteMailAddressResponse extends $tea.Model {
|
|
989
|
-
headers
|
|
990
|
-
statusCode
|
|
991
|
-
body
|
|
995
|
+
headers?: { [key: string]: string };
|
|
996
|
+
statusCode?: number;
|
|
997
|
+
body?: DeleteMailAddressResponseBody;
|
|
992
998
|
static names(): { [key: string]: string } {
|
|
993
999
|
return {
|
|
994
1000
|
headers: 'headers',
|
|
@@ -1058,9 +1064,9 @@ export class DeleteReceiverResponseBody extends $tea.Model {
|
|
|
1058
1064
|
}
|
|
1059
1065
|
|
|
1060
1066
|
export class DeleteReceiverResponse extends $tea.Model {
|
|
1061
|
-
headers
|
|
1062
|
-
statusCode
|
|
1063
|
-
body
|
|
1067
|
+
headers?: { [key: string]: string };
|
|
1068
|
+
statusCode?: number;
|
|
1069
|
+
body?: DeleteReceiverResponseBody;
|
|
1064
1070
|
static names(): { [key: string]: string } {
|
|
1065
1071
|
return {
|
|
1066
1072
|
headers: 'headers',
|
|
@@ -1133,9 +1139,9 @@ export class DeleteReceiverDetailResponseBody extends $tea.Model {
|
|
|
1133
1139
|
}
|
|
1134
1140
|
|
|
1135
1141
|
export class DeleteReceiverDetailResponse extends $tea.Model {
|
|
1136
|
-
headers
|
|
1137
|
-
statusCode
|
|
1138
|
-
body
|
|
1142
|
+
headers?: { [key: string]: string };
|
|
1143
|
+
statusCode?: number;
|
|
1144
|
+
body?: DeleteReceiverDetailResponseBody;
|
|
1139
1145
|
static names(): { [key: string]: string } {
|
|
1140
1146
|
return {
|
|
1141
1147
|
headers: 'headers',
|
|
@@ -1205,9 +1211,9 @@ export class DeleteTagResponseBody extends $tea.Model {
|
|
|
1205
1211
|
}
|
|
1206
1212
|
|
|
1207
1213
|
export class DeleteTagResponse extends $tea.Model {
|
|
1208
|
-
headers
|
|
1209
|
-
statusCode
|
|
1210
|
-
body
|
|
1214
|
+
headers?: { [key: string]: string };
|
|
1215
|
+
statusCode?: number;
|
|
1216
|
+
body?: DeleteTagResponseBody;
|
|
1211
1217
|
static names(): { [key: string]: string } {
|
|
1212
1218
|
return {
|
|
1213
1219
|
headers: 'headers',
|
|
@@ -1322,9 +1328,9 @@ export class DescAccountSummaryResponseBody extends $tea.Model {
|
|
|
1322
1328
|
}
|
|
1323
1329
|
|
|
1324
1330
|
export class DescAccountSummaryResponse extends $tea.Model {
|
|
1325
|
-
headers
|
|
1326
|
-
statusCode
|
|
1327
|
-
body
|
|
1331
|
+
headers?: { [key: string]: string };
|
|
1332
|
+
statusCode?: number;
|
|
1333
|
+
body?: DescAccountSummaryResponseBody;
|
|
1328
1334
|
static names(): { [key: string]: string } {
|
|
1329
1335
|
return {
|
|
1330
1336
|
headers: 'headers',
|
|
@@ -1386,6 +1392,10 @@ export class DescDomainResponseBody extends $tea.Model {
|
|
|
1386
1392
|
dkimAuthStatus?: string;
|
|
1387
1393
|
dkimPublicKey?: string;
|
|
1388
1394
|
dkimRR?: string;
|
|
1395
|
+
dmarcAuthStatus?: number;
|
|
1396
|
+
dmarcHostRecord?: string;
|
|
1397
|
+
dmarcRecord?: string;
|
|
1398
|
+
dnsDmarc?: string;
|
|
1389
1399
|
dnsMx?: string;
|
|
1390
1400
|
dnsSpf?: string;
|
|
1391
1401
|
dnsTxt?: string;
|
|
@@ -1413,6 +1423,10 @@ export class DescDomainResponseBody extends $tea.Model {
|
|
|
1413
1423
|
dkimAuthStatus: 'DkimAuthStatus',
|
|
1414
1424
|
dkimPublicKey: 'DkimPublicKey',
|
|
1415
1425
|
dkimRR: 'DkimRR',
|
|
1426
|
+
dmarcAuthStatus: 'DmarcAuthStatus',
|
|
1427
|
+
dmarcHostRecord: 'DmarcHostRecord',
|
|
1428
|
+
dmarcRecord: 'DmarcRecord',
|
|
1429
|
+
dnsDmarc: 'DnsDmarc',
|
|
1416
1430
|
dnsMx: 'DnsMx',
|
|
1417
1431
|
dnsSpf: 'DnsSpf',
|
|
1418
1432
|
dnsTxt: 'DnsTxt',
|
|
@@ -1443,6 +1457,10 @@ export class DescDomainResponseBody extends $tea.Model {
|
|
|
1443
1457
|
dkimAuthStatus: 'string',
|
|
1444
1458
|
dkimPublicKey: 'string',
|
|
1445
1459
|
dkimRR: 'string',
|
|
1460
|
+
dmarcAuthStatus: 'number',
|
|
1461
|
+
dmarcHostRecord: 'string',
|
|
1462
|
+
dmarcRecord: 'string',
|
|
1463
|
+
dnsDmarc: 'string',
|
|
1446
1464
|
dnsMx: 'string',
|
|
1447
1465
|
dnsSpf: 'string',
|
|
1448
1466
|
dnsTxt: 'string',
|
|
@@ -1469,9 +1487,9 @@ export class DescDomainResponseBody extends $tea.Model {
|
|
|
1469
1487
|
}
|
|
1470
1488
|
|
|
1471
1489
|
export class DescDomainResponse extends $tea.Model {
|
|
1472
|
-
headers
|
|
1473
|
-
statusCode
|
|
1474
|
-
body
|
|
1490
|
+
headers?: { [key: string]: string };
|
|
1491
|
+
statusCode?: number;
|
|
1492
|
+
body?: DescDomainResponseBody;
|
|
1475
1493
|
static names(): { [key: string]: string } {
|
|
1476
1494
|
return {
|
|
1477
1495
|
headers: 'headers',
|
|
@@ -1541,9 +1559,9 @@ export class GetIpProtectionResponseBody extends $tea.Model {
|
|
|
1541
1559
|
}
|
|
1542
1560
|
|
|
1543
1561
|
export class GetIpProtectionResponse extends $tea.Model {
|
|
1544
|
-
headers
|
|
1545
|
-
statusCode
|
|
1546
|
-
body
|
|
1562
|
+
headers?: { [key: string]: string };
|
|
1563
|
+
statusCode?: number;
|
|
1564
|
+
body?: GetIpProtectionResponseBody;
|
|
1547
1565
|
static names(): { [key: string]: string } {
|
|
1548
1566
|
return {
|
|
1549
1567
|
headers: 'headers',
|
|
@@ -1622,9 +1640,9 @@ export class GetIpfilterListResponseBody extends $tea.Model {
|
|
|
1622
1640
|
}
|
|
1623
1641
|
|
|
1624
1642
|
export class GetIpfilterListResponse extends $tea.Model {
|
|
1625
|
-
headers
|
|
1626
|
-
statusCode
|
|
1627
|
-
body
|
|
1643
|
+
headers?: { [key: string]: string };
|
|
1644
|
+
statusCode?: number;
|
|
1645
|
+
body?: GetIpfilterListResponseBody;
|
|
1628
1646
|
static names(): { [key: string]: string } {
|
|
1629
1647
|
return {
|
|
1630
1648
|
headers: 'headers',
|
|
@@ -1733,9 +1751,9 @@ export class GetTrackListResponseBody extends $tea.Model {
|
|
|
1733
1751
|
}
|
|
1734
1752
|
|
|
1735
1753
|
export class GetTrackListResponse extends $tea.Model {
|
|
1736
|
-
headers
|
|
1737
|
-
statusCode
|
|
1738
|
-
body
|
|
1754
|
+
headers?: { [key: string]: string };
|
|
1755
|
+
statusCode?: number;
|
|
1756
|
+
body?: GetTrackListResponseBody;
|
|
1739
1757
|
static names(): { [key: string]: string } {
|
|
1740
1758
|
return {
|
|
1741
1759
|
headers: 'headers',
|
|
@@ -1850,9 +1868,9 @@ export class GetTrackListByMailFromAndTagNameResponseBody extends $tea.Model {
|
|
|
1850
1868
|
}
|
|
1851
1869
|
|
|
1852
1870
|
export class GetTrackListByMailFromAndTagNameResponse extends $tea.Model {
|
|
1853
|
-
headers
|
|
1854
|
-
statusCode
|
|
1855
|
-
body
|
|
1871
|
+
headers?: { [key: string]: string };
|
|
1872
|
+
statusCode?: number;
|
|
1873
|
+
body?: GetTrackListByMailFromAndTagNameResponseBody;
|
|
1856
1874
|
static names(): { [key: string]: string } {
|
|
1857
1875
|
return {
|
|
1858
1876
|
headers: 'headers',
|
|
@@ -1928,9 +1946,9 @@ export class ModifyMailAddressResponseBody extends $tea.Model {
|
|
|
1928
1946
|
}
|
|
1929
1947
|
|
|
1930
1948
|
export class ModifyMailAddressResponse extends $tea.Model {
|
|
1931
|
-
headers
|
|
1932
|
-
statusCode
|
|
1933
|
-
body
|
|
1949
|
+
headers?: { [key: string]: string };
|
|
1950
|
+
statusCode?: number;
|
|
1951
|
+
body?: ModifyMailAddressResponseBody;
|
|
1934
1952
|
static names(): { [key: string]: string } {
|
|
1935
1953
|
return {
|
|
1936
1954
|
headers: 'headers',
|
|
@@ -2012,9 +2030,9 @@ export class ModifyPWByDomainResponseBody extends $tea.Model {
|
|
|
2012
2030
|
}
|
|
2013
2031
|
|
|
2014
2032
|
export class ModifyPWByDomainResponse extends $tea.Model {
|
|
2015
|
-
headers
|
|
2016
|
-
statusCode
|
|
2017
|
-
body
|
|
2033
|
+
headers?: { [key: string]: string };
|
|
2034
|
+
statusCode?: number;
|
|
2035
|
+
body?: ModifyPWByDomainResponseBody;
|
|
2018
2036
|
static names(): { [key: string]: string } {
|
|
2019
2037
|
return {
|
|
2020
2038
|
headers: 'headers',
|
|
@@ -2090,9 +2108,9 @@ export class ModifyTagResponseBody extends $tea.Model {
|
|
|
2090
2108
|
}
|
|
2091
2109
|
|
|
2092
2110
|
export class ModifyTagResponse extends $tea.Model {
|
|
2093
|
-
headers
|
|
2094
|
-
statusCode
|
|
2095
|
-
body
|
|
2111
|
+
headers?: { [key: string]: string };
|
|
2112
|
+
statusCode?: number;
|
|
2113
|
+
body?: ModifyTagResponseBody;
|
|
2096
2114
|
static names(): { [key: string]: string } {
|
|
2097
2115
|
return {
|
|
2098
2116
|
headers: 'headers',
|
|
@@ -2183,9 +2201,9 @@ export class QueryDomainByParamResponseBody extends $tea.Model {
|
|
|
2183
2201
|
}
|
|
2184
2202
|
|
|
2185
2203
|
export class QueryDomainByParamResponse extends $tea.Model {
|
|
2186
|
-
headers
|
|
2187
|
-
statusCode
|
|
2188
|
-
body
|
|
2204
|
+
headers?: { [key: string]: string };
|
|
2205
|
+
statusCode?: number;
|
|
2206
|
+
body?: QueryDomainByParamResponseBody;
|
|
2189
2207
|
static names(): { [key: string]: string } {
|
|
2190
2208
|
return {
|
|
2191
2209
|
headers: 'headers',
|
|
@@ -2276,9 +2294,9 @@ export class QueryInvalidAddressResponseBody extends $tea.Model {
|
|
|
2276
2294
|
}
|
|
2277
2295
|
|
|
2278
2296
|
export class QueryInvalidAddressResponse extends $tea.Model {
|
|
2279
|
-
headers
|
|
2280
|
-
statusCode
|
|
2281
|
-
body
|
|
2297
|
+
headers?: { [key: string]: string };
|
|
2298
|
+
statusCode?: number;
|
|
2299
|
+
body?: QueryInvalidAddressResponseBody;
|
|
2282
2300
|
static names(): { [key: string]: string } {
|
|
2283
2301
|
return {
|
|
2284
2302
|
headers: 'headers',
|
|
@@ -2369,9 +2387,9 @@ export class QueryMailAddressByParamResponseBody extends $tea.Model {
|
|
|
2369
2387
|
}
|
|
2370
2388
|
|
|
2371
2389
|
export class QueryMailAddressByParamResponse extends $tea.Model {
|
|
2372
|
-
headers
|
|
2373
|
-
statusCode
|
|
2374
|
-
body
|
|
2390
|
+
headers?: { [key: string]: string };
|
|
2391
|
+
statusCode?: number;
|
|
2392
|
+
body?: QueryMailAddressByParamResponseBody;
|
|
2375
2393
|
static names(): { [key: string]: string } {
|
|
2376
2394
|
return {
|
|
2377
2395
|
headers: 'headers',
|
|
@@ -2462,9 +2480,9 @@ export class QueryReceiverByParamResponseBody extends $tea.Model {
|
|
|
2462
2480
|
}
|
|
2463
2481
|
|
|
2464
2482
|
export class QueryReceiverByParamResponse extends $tea.Model {
|
|
2465
|
-
headers
|
|
2466
|
-
statusCode
|
|
2467
|
-
body
|
|
2483
|
+
headers?: { [key: string]: string };
|
|
2484
|
+
statusCode?: number;
|
|
2485
|
+
body?: QueryReceiverByParamResponseBody;
|
|
2468
2486
|
static names(): { [key: string]: string } {
|
|
2469
2487
|
return {
|
|
2470
2488
|
headers: 'headers',
|
|
@@ -2555,9 +2573,9 @@ export class QueryReceiverDetailResponseBody extends $tea.Model {
|
|
|
2555
2573
|
}
|
|
2556
2574
|
|
|
2557
2575
|
export class QueryReceiverDetailResponse extends $tea.Model {
|
|
2558
|
-
headers
|
|
2559
|
-
statusCode
|
|
2560
|
-
body
|
|
2576
|
+
headers?: { [key: string]: string };
|
|
2577
|
+
statusCode?: number;
|
|
2578
|
+
body?: QueryReceiverDetailResponseBody;
|
|
2561
2579
|
static names(): { [key: string]: string } {
|
|
2562
2580
|
return {
|
|
2563
2581
|
headers: 'headers',
|
|
@@ -2645,9 +2663,9 @@ export class QueryTagByParamResponseBody extends $tea.Model {
|
|
|
2645
2663
|
}
|
|
2646
2664
|
|
|
2647
2665
|
export class QueryTagByParamResponse extends $tea.Model {
|
|
2648
|
-
headers
|
|
2649
|
-
statusCode
|
|
2650
|
-
body
|
|
2666
|
+
headers?: { [key: string]: string };
|
|
2667
|
+
statusCode?: number;
|
|
2668
|
+
body?: QueryTagByParamResponseBody;
|
|
2651
2669
|
static names(): { [key: string]: string } {
|
|
2652
2670
|
return {
|
|
2653
2671
|
headers: 'headers',
|
|
@@ -2738,9 +2756,9 @@ export class QueryTaskByParamResponseBody extends $tea.Model {
|
|
|
2738
2756
|
}
|
|
2739
2757
|
|
|
2740
2758
|
export class QueryTaskByParamResponse extends $tea.Model {
|
|
2741
|
-
headers
|
|
2742
|
-
statusCode
|
|
2743
|
-
body
|
|
2759
|
+
headers?: { [key: string]: string };
|
|
2760
|
+
statusCode?: number;
|
|
2761
|
+
body?: QueryTaskByParamResponseBody;
|
|
2744
2762
|
static names(): { [key: string]: string } {
|
|
2745
2763
|
return {
|
|
2746
2764
|
headers: 'headers',
|
|
@@ -2822,9 +2840,9 @@ export class SaveReceiverDetailResponseBody extends $tea.Model {
|
|
|
2822
2840
|
}
|
|
2823
2841
|
|
|
2824
2842
|
export class SaveReceiverDetailResponse extends $tea.Model {
|
|
2825
|
-
headers
|
|
2826
|
-
statusCode
|
|
2827
|
-
body
|
|
2843
|
+
headers?: { [key: string]: string };
|
|
2844
|
+
statusCode?: number;
|
|
2845
|
+
body?: SaveReceiverDetailResponseBody;
|
|
2828
2846
|
static names(): { [key: string]: string } {
|
|
2829
2847
|
return {
|
|
2830
2848
|
headers: 'headers',
|
|
@@ -2915,9 +2933,9 @@ export class SendTestByTemplateResponseBody extends $tea.Model {
|
|
|
2915
2933
|
}
|
|
2916
2934
|
|
|
2917
2935
|
export class SendTestByTemplateResponse extends $tea.Model {
|
|
2918
|
-
headers
|
|
2919
|
-
statusCode
|
|
2920
|
-
body
|
|
2936
|
+
headers?: { [key: string]: string };
|
|
2937
|
+
statusCode?: number;
|
|
2938
|
+
body?: SendTestByTemplateResponseBody;
|
|
2921
2939
|
static names(): { [key: string]: string } {
|
|
2922
2940
|
return {
|
|
2923
2941
|
headers: 'headers',
|
|
@@ -3002,9 +3020,9 @@ export class SenderStatisticsByTagNameAndBatchIDResponseBody extends $tea.Model
|
|
|
3002
3020
|
}
|
|
3003
3021
|
|
|
3004
3022
|
export class SenderStatisticsByTagNameAndBatchIDResponse extends $tea.Model {
|
|
3005
|
-
headers
|
|
3006
|
-
statusCode
|
|
3007
|
-
body
|
|
3023
|
+
headers?: { [key: string]: string };
|
|
3024
|
+
statusCode?: number;
|
|
3025
|
+
body?: SenderStatisticsByTagNameAndBatchIDResponseBody;
|
|
3008
3026
|
static names(): { [key: string]: string } {
|
|
3009
3027
|
return {
|
|
3010
3028
|
headers: 'headers',
|
|
@@ -3101,9 +3119,9 @@ export class SenderStatisticsDetailByParamResponseBody extends $tea.Model {
|
|
|
3101
3119
|
}
|
|
3102
3120
|
|
|
3103
3121
|
export class SenderStatisticsDetailByParamResponse extends $tea.Model {
|
|
3104
|
-
headers
|
|
3105
|
-
statusCode
|
|
3106
|
-
body
|
|
3122
|
+
headers?: { [key: string]: string };
|
|
3123
|
+
statusCode?: number;
|
|
3124
|
+
body?: SenderStatisticsDetailByParamResponseBody;
|
|
3107
3125
|
static names(): { [key: string]: string } {
|
|
3108
3126
|
return {
|
|
3109
3127
|
headers: 'headers',
|
|
@@ -3141,6 +3159,8 @@ export class SingleSendMailRequest extends $tea.Model {
|
|
|
3141
3159
|
tagName?: string;
|
|
3142
3160
|
textBody?: string;
|
|
3143
3161
|
toAddress?: string;
|
|
3162
|
+
unSubscribeFilterLevel?: string;
|
|
3163
|
+
unSubscribeLinkType?: string;
|
|
3144
3164
|
static names(): { [key: string]: string } {
|
|
3145
3165
|
return {
|
|
3146
3166
|
accountName: 'AccountName',
|
|
@@ -3158,6 +3178,8 @@ export class SingleSendMailRequest extends $tea.Model {
|
|
|
3158
3178
|
tagName: 'TagName',
|
|
3159
3179
|
textBody: 'TextBody',
|
|
3160
3180
|
toAddress: 'ToAddress',
|
|
3181
|
+
unSubscribeFilterLevel: 'UnSubscribeFilterLevel',
|
|
3182
|
+
unSubscribeLinkType: 'UnSubscribeLinkType',
|
|
3161
3183
|
};
|
|
3162
3184
|
}
|
|
3163
3185
|
|
|
@@ -3178,6 +3200,8 @@ export class SingleSendMailRequest extends $tea.Model {
|
|
|
3178
3200
|
tagName: 'string',
|
|
3179
3201
|
textBody: 'string',
|
|
3180
3202
|
toAddress: 'string',
|
|
3203
|
+
unSubscribeFilterLevel: 'string',
|
|
3204
|
+
unSubscribeLinkType: 'string',
|
|
3181
3205
|
};
|
|
3182
3206
|
}
|
|
3183
3207
|
|
|
@@ -3209,9 +3233,9 @@ export class SingleSendMailResponseBody extends $tea.Model {
|
|
|
3209
3233
|
}
|
|
3210
3234
|
|
|
3211
3235
|
export class SingleSendMailResponse extends $tea.Model {
|
|
3212
|
-
headers
|
|
3213
|
-
statusCode
|
|
3214
|
-
body
|
|
3236
|
+
headers?: { [key: string]: string };
|
|
3237
|
+
statusCode?: number;
|
|
3238
|
+
body?: SingleSendMailResponseBody;
|
|
3215
3239
|
static names(): { [key: string]: string } {
|
|
3216
3240
|
return {
|
|
3217
3241
|
headers: 'headers',
|
|
@@ -3281,9 +3305,9 @@ export class UpdateIpProtectionResponseBody extends $tea.Model {
|
|
|
3281
3305
|
}
|
|
3282
3306
|
|
|
3283
3307
|
export class UpdateIpProtectionResponse extends $tea.Model {
|
|
3284
|
-
headers
|
|
3285
|
-
statusCode
|
|
3286
|
-
body
|
|
3308
|
+
headers?: { [key: string]: string };
|
|
3309
|
+
statusCode?: number;
|
|
3310
|
+
body?: UpdateIpProtectionResponseBody;
|
|
3287
3311
|
static names(): { [key: string]: string } {
|
|
3288
3312
|
return {
|
|
3289
3313
|
headers: 'headers',
|
|
@@ -3973,6 +3997,7 @@ export class SenderStatisticsDetailByParamResponseBodyDataMailDetail extends $te
|
|
|
3973
3997
|
lastUpdateTime?: string;
|
|
3974
3998
|
message?: string;
|
|
3975
3999
|
status?: number;
|
|
4000
|
+
subject?: string;
|
|
3976
4001
|
toAddress?: string;
|
|
3977
4002
|
utcLastUpdateTime?: string;
|
|
3978
4003
|
static names(): { [key: string]: string } {
|
|
@@ -3981,6 +4006,7 @@ export class SenderStatisticsDetailByParamResponseBodyDataMailDetail extends $te
|
|
|
3981
4006
|
lastUpdateTime: 'LastUpdateTime',
|
|
3982
4007
|
message: 'Message',
|
|
3983
4008
|
status: 'Status',
|
|
4009
|
+
subject: 'Subject',
|
|
3984
4010
|
toAddress: 'ToAddress',
|
|
3985
4011
|
utcLastUpdateTime: 'UtcLastUpdateTime',
|
|
3986
4012
|
};
|
|
@@ -3992,6 +4018,7 @@ export class SenderStatisticsDetailByParamResponseBodyDataMailDetail extends $te
|
|
|
3992
4018
|
lastUpdateTime: 'string',
|
|
3993
4019
|
message: 'string',
|
|
3994
4020
|
status: 'number',
|
|
4021
|
+
subject: 'string',
|
|
3995
4022
|
toAddress: 'string',
|
|
3996
4023
|
utcLastUpdateTime: 'string',
|
|
3997
4024
|
};
|
|
@@ -4173,6 +4200,14 @@ export default class Client extends OpenApi {
|
|
|
4173
4200
|
query["TemplateName"] = request.templateName;
|
|
4174
4201
|
}
|
|
4175
4202
|
|
|
4203
|
+
if (!Util.isUnset(request.unSubscribeFilterLevel)) {
|
|
4204
|
+
query["UnSubscribeFilterLevel"] = request.unSubscribeFilterLevel;
|
|
4205
|
+
}
|
|
4206
|
+
|
|
4207
|
+
if (!Util.isUnset(request.unSubscribeLinkType)) {
|
|
4208
|
+
query["UnSubscribeLinkType"] = request.unSubscribeLinkType;
|
|
4209
|
+
}
|
|
4210
|
+
|
|
4176
4211
|
let req = new $OpenApi.OpenApiRequest({
|
|
4177
4212
|
query: OpenApiUtil.query(query),
|
|
4178
4213
|
});
|
|
@@ -5879,6 +5914,14 @@ export default class Client extends OpenApi {
|
|
|
5879
5914
|
query["ToAddress"] = request.toAddress;
|
|
5880
5915
|
}
|
|
5881
5916
|
|
|
5917
|
+
if (!Util.isUnset(request.unSubscribeFilterLevel)) {
|
|
5918
|
+
query["UnSubscribeFilterLevel"] = request.unSubscribeFilterLevel;
|
|
5919
|
+
}
|
|
5920
|
+
|
|
5921
|
+
if (!Util.isUnset(request.unSubscribeLinkType)) {
|
|
5922
|
+
query["UnSubscribeLinkType"] = request.unSubscribeLinkType;
|
|
5923
|
+
}
|
|
5924
|
+
|
|
5882
5925
|
let req = new $OpenApi.OpenApiRequest({
|
|
5883
5926
|
query: OpenApiUtil.query(query),
|
|
5884
5927
|
});
|