@alicloud/dm20151123 1.0.10 → 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 +119 -114
- package/dist/client.js +37 -2
- package/dist/client.js.map +1 -1
- package/package.json +3 -3
- package/src/client.ts +145 -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',
|
|
@@ -1481,9 +1487,9 @@ export class DescDomainResponseBody extends $tea.Model {
|
|
|
1481
1487
|
}
|
|
1482
1488
|
|
|
1483
1489
|
export class DescDomainResponse extends $tea.Model {
|
|
1484
|
-
headers
|
|
1485
|
-
statusCode
|
|
1486
|
-
body
|
|
1490
|
+
headers?: { [key: string]: string };
|
|
1491
|
+
statusCode?: number;
|
|
1492
|
+
body?: DescDomainResponseBody;
|
|
1487
1493
|
static names(): { [key: string]: string } {
|
|
1488
1494
|
return {
|
|
1489
1495
|
headers: 'headers',
|
|
@@ -1553,9 +1559,9 @@ export class GetIpProtectionResponseBody extends $tea.Model {
|
|
|
1553
1559
|
}
|
|
1554
1560
|
|
|
1555
1561
|
export class GetIpProtectionResponse extends $tea.Model {
|
|
1556
|
-
headers
|
|
1557
|
-
statusCode
|
|
1558
|
-
body
|
|
1562
|
+
headers?: { [key: string]: string };
|
|
1563
|
+
statusCode?: number;
|
|
1564
|
+
body?: GetIpProtectionResponseBody;
|
|
1559
1565
|
static names(): { [key: string]: string } {
|
|
1560
1566
|
return {
|
|
1561
1567
|
headers: 'headers',
|
|
@@ -1634,9 +1640,9 @@ export class GetIpfilterListResponseBody extends $tea.Model {
|
|
|
1634
1640
|
}
|
|
1635
1641
|
|
|
1636
1642
|
export class GetIpfilterListResponse extends $tea.Model {
|
|
1637
|
-
headers
|
|
1638
|
-
statusCode
|
|
1639
|
-
body
|
|
1643
|
+
headers?: { [key: string]: string };
|
|
1644
|
+
statusCode?: number;
|
|
1645
|
+
body?: GetIpfilterListResponseBody;
|
|
1640
1646
|
static names(): { [key: string]: string } {
|
|
1641
1647
|
return {
|
|
1642
1648
|
headers: 'headers',
|
|
@@ -1745,9 +1751,9 @@ export class GetTrackListResponseBody extends $tea.Model {
|
|
|
1745
1751
|
}
|
|
1746
1752
|
|
|
1747
1753
|
export class GetTrackListResponse extends $tea.Model {
|
|
1748
|
-
headers
|
|
1749
|
-
statusCode
|
|
1750
|
-
body
|
|
1754
|
+
headers?: { [key: string]: string };
|
|
1755
|
+
statusCode?: number;
|
|
1756
|
+
body?: GetTrackListResponseBody;
|
|
1751
1757
|
static names(): { [key: string]: string } {
|
|
1752
1758
|
return {
|
|
1753
1759
|
headers: 'headers',
|
|
@@ -1862,9 +1868,9 @@ export class GetTrackListByMailFromAndTagNameResponseBody extends $tea.Model {
|
|
|
1862
1868
|
}
|
|
1863
1869
|
|
|
1864
1870
|
export class GetTrackListByMailFromAndTagNameResponse extends $tea.Model {
|
|
1865
|
-
headers
|
|
1866
|
-
statusCode
|
|
1867
|
-
body
|
|
1871
|
+
headers?: { [key: string]: string };
|
|
1872
|
+
statusCode?: number;
|
|
1873
|
+
body?: GetTrackListByMailFromAndTagNameResponseBody;
|
|
1868
1874
|
static names(): { [key: string]: string } {
|
|
1869
1875
|
return {
|
|
1870
1876
|
headers: 'headers',
|
|
@@ -1940,9 +1946,9 @@ export class ModifyMailAddressResponseBody extends $tea.Model {
|
|
|
1940
1946
|
}
|
|
1941
1947
|
|
|
1942
1948
|
export class ModifyMailAddressResponse extends $tea.Model {
|
|
1943
|
-
headers
|
|
1944
|
-
statusCode
|
|
1945
|
-
body
|
|
1949
|
+
headers?: { [key: string]: string };
|
|
1950
|
+
statusCode?: number;
|
|
1951
|
+
body?: ModifyMailAddressResponseBody;
|
|
1946
1952
|
static names(): { [key: string]: string } {
|
|
1947
1953
|
return {
|
|
1948
1954
|
headers: 'headers',
|
|
@@ -2024,9 +2030,9 @@ export class ModifyPWByDomainResponseBody extends $tea.Model {
|
|
|
2024
2030
|
}
|
|
2025
2031
|
|
|
2026
2032
|
export class ModifyPWByDomainResponse extends $tea.Model {
|
|
2027
|
-
headers
|
|
2028
|
-
statusCode
|
|
2029
|
-
body
|
|
2033
|
+
headers?: { [key: string]: string };
|
|
2034
|
+
statusCode?: number;
|
|
2035
|
+
body?: ModifyPWByDomainResponseBody;
|
|
2030
2036
|
static names(): { [key: string]: string } {
|
|
2031
2037
|
return {
|
|
2032
2038
|
headers: 'headers',
|
|
@@ -2102,9 +2108,9 @@ export class ModifyTagResponseBody extends $tea.Model {
|
|
|
2102
2108
|
}
|
|
2103
2109
|
|
|
2104
2110
|
export class ModifyTagResponse extends $tea.Model {
|
|
2105
|
-
headers
|
|
2106
|
-
statusCode
|
|
2107
|
-
body
|
|
2111
|
+
headers?: { [key: string]: string };
|
|
2112
|
+
statusCode?: number;
|
|
2113
|
+
body?: ModifyTagResponseBody;
|
|
2108
2114
|
static names(): { [key: string]: string } {
|
|
2109
2115
|
return {
|
|
2110
2116
|
headers: 'headers',
|
|
@@ -2195,9 +2201,9 @@ export class QueryDomainByParamResponseBody extends $tea.Model {
|
|
|
2195
2201
|
}
|
|
2196
2202
|
|
|
2197
2203
|
export class QueryDomainByParamResponse extends $tea.Model {
|
|
2198
|
-
headers
|
|
2199
|
-
statusCode
|
|
2200
|
-
body
|
|
2204
|
+
headers?: { [key: string]: string };
|
|
2205
|
+
statusCode?: number;
|
|
2206
|
+
body?: QueryDomainByParamResponseBody;
|
|
2201
2207
|
static names(): { [key: string]: string } {
|
|
2202
2208
|
return {
|
|
2203
2209
|
headers: 'headers',
|
|
@@ -2288,9 +2294,9 @@ export class QueryInvalidAddressResponseBody extends $tea.Model {
|
|
|
2288
2294
|
}
|
|
2289
2295
|
|
|
2290
2296
|
export class QueryInvalidAddressResponse extends $tea.Model {
|
|
2291
|
-
headers
|
|
2292
|
-
statusCode
|
|
2293
|
-
body
|
|
2297
|
+
headers?: { [key: string]: string };
|
|
2298
|
+
statusCode?: number;
|
|
2299
|
+
body?: QueryInvalidAddressResponseBody;
|
|
2294
2300
|
static names(): { [key: string]: string } {
|
|
2295
2301
|
return {
|
|
2296
2302
|
headers: 'headers',
|
|
@@ -2381,9 +2387,9 @@ export class QueryMailAddressByParamResponseBody extends $tea.Model {
|
|
|
2381
2387
|
}
|
|
2382
2388
|
|
|
2383
2389
|
export class QueryMailAddressByParamResponse extends $tea.Model {
|
|
2384
|
-
headers
|
|
2385
|
-
statusCode
|
|
2386
|
-
body
|
|
2390
|
+
headers?: { [key: string]: string };
|
|
2391
|
+
statusCode?: number;
|
|
2392
|
+
body?: QueryMailAddressByParamResponseBody;
|
|
2387
2393
|
static names(): { [key: string]: string } {
|
|
2388
2394
|
return {
|
|
2389
2395
|
headers: 'headers',
|
|
@@ -2474,9 +2480,9 @@ export class QueryReceiverByParamResponseBody extends $tea.Model {
|
|
|
2474
2480
|
}
|
|
2475
2481
|
|
|
2476
2482
|
export class QueryReceiverByParamResponse extends $tea.Model {
|
|
2477
|
-
headers
|
|
2478
|
-
statusCode
|
|
2479
|
-
body
|
|
2483
|
+
headers?: { [key: string]: string };
|
|
2484
|
+
statusCode?: number;
|
|
2485
|
+
body?: QueryReceiverByParamResponseBody;
|
|
2480
2486
|
static names(): { [key: string]: string } {
|
|
2481
2487
|
return {
|
|
2482
2488
|
headers: 'headers',
|
|
@@ -2567,9 +2573,9 @@ export class QueryReceiverDetailResponseBody extends $tea.Model {
|
|
|
2567
2573
|
}
|
|
2568
2574
|
|
|
2569
2575
|
export class QueryReceiverDetailResponse extends $tea.Model {
|
|
2570
|
-
headers
|
|
2571
|
-
statusCode
|
|
2572
|
-
body
|
|
2576
|
+
headers?: { [key: string]: string };
|
|
2577
|
+
statusCode?: number;
|
|
2578
|
+
body?: QueryReceiverDetailResponseBody;
|
|
2573
2579
|
static names(): { [key: string]: string } {
|
|
2574
2580
|
return {
|
|
2575
2581
|
headers: 'headers',
|
|
@@ -2657,9 +2663,9 @@ export class QueryTagByParamResponseBody extends $tea.Model {
|
|
|
2657
2663
|
}
|
|
2658
2664
|
|
|
2659
2665
|
export class QueryTagByParamResponse extends $tea.Model {
|
|
2660
|
-
headers
|
|
2661
|
-
statusCode
|
|
2662
|
-
body
|
|
2666
|
+
headers?: { [key: string]: string };
|
|
2667
|
+
statusCode?: number;
|
|
2668
|
+
body?: QueryTagByParamResponseBody;
|
|
2663
2669
|
static names(): { [key: string]: string } {
|
|
2664
2670
|
return {
|
|
2665
2671
|
headers: 'headers',
|
|
@@ -2750,9 +2756,9 @@ export class QueryTaskByParamResponseBody extends $tea.Model {
|
|
|
2750
2756
|
}
|
|
2751
2757
|
|
|
2752
2758
|
export class QueryTaskByParamResponse extends $tea.Model {
|
|
2753
|
-
headers
|
|
2754
|
-
statusCode
|
|
2755
|
-
body
|
|
2759
|
+
headers?: { [key: string]: string };
|
|
2760
|
+
statusCode?: number;
|
|
2761
|
+
body?: QueryTaskByParamResponseBody;
|
|
2756
2762
|
static names(): { [key: string]: string } {
|
|
2757
2763
|
return {
|
|
2758
2764
|
headers: 'headers',
|
|
@@ -2834,9 +2840,9 @@ export class SaveReceiverDetailResponseBody extends $tea.Model {
|
|
|
2834
2840
|
}
|
|
2835
2841
|
|
|
2836
2842
|
export class SaveReceiverDetailResponse extends $tea.Model {
|
|
2837
|
-
headers
|
|
2838
|
-
statusCode
|
|
2839
|
-
body
|
|
2843
|
+
headers?: { [key: string]: string };
|
|
2844
|
+
statusCode?: number;
|
|
2845
|
+
body?: SaveReceiverDetailResponseBody;
|
|
2840
2846
|
static names(): { [key: string]: string } {
|
|
2841
2847
|
return {
|
|
2842
2848
|
headers: 'headers',
|
|
@@ -2927,9 +2933,9 @@ export class SendTestByTemplateResponseBody extends $tea.Model {
|
|
|
2927
2933
|
}
|
|
2928
2934
|
|
|
2929
2935
|
export class SendTestByTemplateResponse extends $tea.Model {
|
|
2930
|
-
headers
|
|
2931
|
-
statusCode
|
|
2932
|
-
body
|
|
2936
|
+
headers?: { [key: string]: string };
|
|
2937
|
+
statusCode?: number;
|
|
2938
|
+
body?: SendTestByTemplateResponseBody;
|
|
2933
2939
|
static names(): { [key: string]: string } {
|
|
2934
2940
|
return {
|
|
2935
2941
|
headers: 'headers',
|
|
@@ -3014,9 +3020,9 @@ export class SenderStatisticsByTagNameAndBatchIDResponseBody extends $tea.Model
|
|
|
3014
3020
|
}
|
|
3015
3021
|
|
|
3016
3022
|
export class SenderStatisticsByTagNameAndBatchIDResponse extends $tea.Model {
|
|
3017
|
-
headers
|
|
3018
|
-
statusCode
|
|
3019
|
-
body
|
|
3023
|
+
headers?: { [key: string]: string };
|
|
3024
|
+
statusCode?: number;
|
|
3025
|
+
body?: SenderStatisticsByTagNameAndBatchIDResponseBody;
|
|
3020
3026
|
static names(): { [key: string]: string } {
|
|
3021
3027
|
return {
|
|
3022
3028
|
headers: 'headers',
|
|
@@ -3113,9 +3119,9 @@ export class SenderStatisticsDetailByParamResponseBody extends $tea.Model {
|
|
|
3113
3119
|
}
|
|
3114
3120
|
|
|
3115
3121
|
export class SenderStatisticsDetailByParamResponse extends $tea.Model {
|
|
3116
|
-
headers
|
|
3117
|
-
statusCode
|
|
3118
|
-
body
|
|
3122
|
+
headers?: { [key: string]: string };
|
|
3123
|
+
statusCode?: number;
|
|
3124
|
+
body?: SenderStatisticsDetailByParamResponseBody;
|
|
3119
3125
|
static names(): { [key: string]: string } {
|
|
3120
3126
|
return {
|
|
3121
3127
|
headers: 'headers',
|
|
@@ -3153,6 +3159,8 @@ export class SingleSendMailRequest extends $tea.Model {
|
|
|
3153
3159
|
tagName?: string;
|
|
3154
3160
|
textBody?: string;
|
|
3155
3161
|
toAddress?: string;
|
|
3162
|
+
unSubscribeFilterLevel?: string;
|
|
3163
|
+
unSubscribeLinkType?: string;
|
|
3156
3164
|
static names(): { [key: string]: string } {
|
|
3157
3165
|
return {
|
|
3158
3166
|
accountName: 'AccountName',
|
|
@@ -3170,6 +3178,8 @@ export class SingleSendMailRequest extends $tea.Model {
|
|
|
3170
3178
|
tagName: 'TagName',
|
|
3171
3179
|
textBody: 'TextBody',
|
|
3172
3180
|
toAddress: 'ToAddress',
|
|
3181
|
+
unSubscribeFilterLevel: 'UnSubscribeFilterLevel',
|
|
3182
|
+
unSubscribeLinkType: 'UnSubscribeLinkType',
|
|
3173
3183
|
};
|
|
3174
3184
|
}
|
|
3175
3185
|
|
|
@@ -3190,6 +3200,8 @@ export class SingleSendMailRequest extends $tea.Model {
|
|
|
3190
3200
|
tagName: 'string',
|
|
3191
3201
|
textBody: 'string',
|
|
3192
3202
|
toAddress: 'string',
|
|
3203
|
+
unSubscribeFilterLevel: 'string',
|
|
3204
|
+
unSubscribeLinkType: 'string',
|
|
3193
3205
|
};
|
|
3194
3206
|
}
|
|
3195
3207
|
|
|
@@ -3221,9 +3233,9 @@ export class SingleSendMailResponseBody extends $tea.Model {
|
|
|
3221
3233
|
}
|
|
3222
3234
|
|
|
3223
3235
|
export class SingleSendMailResponse extends $tea.Model {
|
|
3224
|
-
headers
|
|
3225
|
-
statusCode
|
|
3226
|
-
body
|
|
3236
|
+
headers?: { [key: string]: string };
|
|
3237
|
+
statusCode?: number;
|
|
3238
|
+
body?: SingleSendMailResponseBody;
|
|
3227
3239
|
static names(): { [key: string]: string } {
|
|
3228
3240
|
return {
|
|
3229
3241
|
headers: 'headers',
|
|
@@ -3293,9 +3305,9 @@ export class UpdateIpProtectionResponseBody extends $tea.Model {
|
|
|
3293
3305
|
}
|
|
3294
3306
|
|
|
3295
3307
|
export class UpdateIpProtectionResponse extends $tea.Model {
|
|
3296
|
-
headers
|
|
3297
|
-
statusCode
|
|
3298
|
-
body
|
|
3308
|
+
headers?: { [key: string]: string };
|
|
3309
|
+
statusCode?: number;
|
|
3310
|
+
body?: UpdateIpProtectionResponseBody;
|
|
3299
3311
|
static names(): { [key: string]: string } {
|
|
3300
3312
|
return {
|
|
3301
3313
|
headers: 'headers',
|
|
@@ -3985,6 +3997,7 @@ export class SenderStatisticsDetailByParamResponseBodyDataMailDetail extends $te
|
|
|
3985
3997
|
lastUpdateTime?: string;
|
|
3986
3998
|
message?: string;
|
|
3987
3999
|
status?: number;
|
|
4000
|
+
subject?: string;
|
|
3988
4001
|
toAddress?: string;
|
|
3989
4002
|
utcLastUpdateTime?: string;
|
|
3990
4003
|
static names(): { [key: string]: string } {
|
|
@@ -3993,6 +4006,7 @@ export class SenderStatisticsDetailByParamResponseBodyDataMailDetail extends $te
|
|
|
3993
4006
|
lastUpdateTime: 'LastUpdateTime',
|
|
3994
4007
|
message: 'Message',
|
|
3995
4008
|
status: 'Status',
|
|
4009
|
+
subject: 'Subject',
|
|
3996
4010
|
toAddress: 'ToAddress',
|
|
3997
4011
|
utcLastUpdateTime: 'UtcLastUpdateTime',
|
|
3998
4012
|
};
|
|
@@ -4004,6 +4018,7 @@ export class SenderStatisticsDetailByParamResponseBodyDataMailDetail extends $te
|
|
|
4004
4018
|
lastUpdateTime: 'string',
|
|
4005
4019
|
message: 'string',
|
|
4006
4020
|
status: 'number',
|
|
4021
|
+
subject: 'string',
|
|
4007
4022
|
toAddress: 'string',
|
|
4008
4023
|
utcLastUpdateTime: 'string',
|
|
4009
4024
|
};
|
|
@@ -4185,6 +4200,14 @@ export default class Client extends OpenApi {
|
|
|
4185
4200
|
query["TemplateName"] = request.templateName;
|
|
4186
4201
|
}
|
|
4187
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
|
+
|
|
4188
4211
|
let req = new $OpenApi.OpenApiRequest({
|
|
4189
4212
|
query: OpenApiUtil.query(query),
|
|
4190
4213
|
});
|
|
@@ -5891,6 +5914,14 @@ export default class Client extends OpenApi {
|
|
|
5891
5914
|
query["ToAddress"] = request.toAddress;
|
|
5892
5915
|
}
|
|
5893
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
|
+
|
|
5894
5925
|
let req = new $OpenApi.OpenApiRequest({
|
|
5895
5926
|
query: OpenApiUtil.query(query),
|
|
5896
5927
|
});
|