@alicloud/dytnsapi20200217 2.0.0 → 2.2.0
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 +916 -135
- package/dist/client.js +1703 -161
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +2242 -296
package/src/client.ts
CHANGED
|
@@ -8,18 +8,22 @@ import OpenApiUtil from '@alicloud/openapi-util';
|
|
|
8
8
|
import EndpointUtil from '@alicloud/endpoint-util';
|
|
9
9
|
import * as $tea from '@alicloud/tea-typescript';
|
|
10
10
|
|
|
11
|
-
export class
|
|
11
|
+
export class CompanyFourElementsVerificationRequest extends $tea.Model {
|
|
12
12
|
authCode?: string;
|
|
13
|
-
|
|
14
|
-
|
|
13
|
+
epCertName?: string;
|
|
14
|
+
epCertNo?: string;
|
|
15
|
+
legalPersonCertName?: string;
|
|
16
|
+
legalPersonCertNo?: string;
|
|
15
17
|
ownerId?: number;
|
|
16
18
|
resourceOwnerAccount?: string;
|
|
17
19
|
resourceOwnerId?: number;
|
|
18
20
|
static names(): { [key: string]: string } {
|
|
19
21
|
return {
|
|
20
22
|
authCode: 'AuthCode',
|
|
21
|
-
|
|
22
|
-
|
|
23
|
+
epCertName: 'EpCertName',
|
|
24
|
+
epCertNo: 'EpCertNo',
|
|
25
|
+
legalPersonCertName: 'LegalPersonCertName',
|
|
26
|
+
legalPersonCertNo: 'LegalPersonCertNo',
|
|
23
27
|
ownerId: 'OwnerId',
|
|
24
28
|
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
25
29
|
resourceOwnerId: 'ResourceOwnerId',
|
|
@@ -29,8 +33,10 @@ export class DescribeEmptyNumberRequest extends $tea.Model {
|
|
|
29
33
|
static types(): { [key: string]: any } {
|
|
30
34
|
return {
|
|
31
35
|
authCode: 'string',
|
|
32
|
-
|
|
33
|
-
|
|
36
|
+
epCertName: 'string',
|
|
37
|
+
epCertNo: 'string',
|
|
38
|
+
legalPersonCertName: 'string',
|
|
39
|
+
legalPersonCertNo: 'string',
|
|
34
40
|
ownerId: 'number',
|
|
35
41
|
resourceOwnerAccount: 'string',
|
|
36
42
|
resourceOwnerId: 'number',
|
|
@@ -42,13 +48,15 @@ export class DescribeEmptyNumberRequest extends $tea.Model {
|
|
|
42
48
|
}
|
|
43
49
|
}
|
|
44
50
|
|
|
45
|
-
export class
|
|
51
|
+
export class CompanyFourElementsVerificationResponseBody extends $tea.Model {
|
|
52
|
+
accessDeniedDetail?: string;
|
|
46
53
|
code?: string;
|
|
47
|
-
data?:
|
|
54
|
+
data?: CompanyFourElementsVerificationResponseBodyData;
|
|
48
55
|
message?: string;
|
|
49
56
|
requestId?: string;
|
|
50
57
|
static names(): { [key: string]: string } {
|
|
51
58
|
return {
|
|
59
|
+
accessDeniedDetail: 'AccessDeniedDetail',
|
|
52
60
|
code: 'Code',
|
|
53
61
|
data: 'Data',
|
|
54
62
|
message: 'Message',
|
|
@@ -58,8 +66,9 @@ export class DescribeEmptyNumberResponseBody extends $tea.Model {
|
|
|
58
66
|
|
|
59
67
|
static types(): { [key: string]: any } {
|
|
60
68
|
return {
|
|
69
|
+
accessDeniedDetail: 'string',
|
|
61
70
|
code: 'string',
|
|
62
|
-
data:
|
|
71
|
+
data: CompanyFourElementsVerificationResponseBodyData,
|
|
63
72
|
message: 'string',
|
|
64
73
|
requestId: 'string',
|
|
65
74
|
};
|
|
@@ -70,10 +79,10 @@ export class DescribeEmptyNumberResponseBody extends $tea.Model {
|
|
|
70
79
|
}
|
|
71
80
|
}
|
|
72
81
|
|
|
73
|
-
export class
|
|
82
|
+
export class CompanyFourElementsVerificationResponse extends $tea.Model {
|
|
74
83
|
headers: { [key: string]: string };
|
|
75
84
|
statusCode: number;
|
|
76
|
-
body:
|
|
85
|
+
body: CompanyFourElementsVerificationResponseBody;
|
|
77
86
|
static names(): { [key: string]: string } {
|
|
78
87
|
return {
|
|
79
88
|
headers: 'headers',
|
|
@@ -86,7 +95,7 @@ export class DescribeEmptyNumberResponse extends $tea.Model {
|
|
|
86
95
|
return {
|
|
87
96
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
88
97
|
statusCode: 'number',
|
|
89
|
-
body:
|
|
98
|
+
body: CompanyFourElementsVerificationResponseBody,
|
|
90
99
|
};
|
|
91
100
|
}
|
|
92
101
|
|
|
@@ -95,23 +104,21 @@ export class DescribeEmptyNumberResponse extends $tea.Model {
|
|
|
95
104
|
}
|
|
96
105
|
}
|
|
97
106
|
|
|
98
|
-
export class
|
|
107
|
+
export class CompanyThreeElementsVerificationRequest extends $tea.Model {
|
|
99
108
|
authCode?: string;
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
109
|
+
epCertName?: string;
|
|
110
|
+
epCertNo?: string;
|
|
111
|
+
legalPersonCertName?: string;
|
|
103
112
|
ownerId?: number;
|
|
104
|
-
rate?: number;
|
|
105
113
|
resourceOwnerAccount?: string;
|
|
106
114
|
resourceOwnerId?: number;
|
|
107
115
|
static names(): { [key: string]: string } {
|
|
108
116
|
return {
|
|
109
117
|
authCode: 'AuthCode',
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
118
|
+
epCertName: 'EpCertName',
|
|
119
|
+
epCertNo: 'EpCertNo',
|
|
120
|
+
legalPersonCertName: 'LegalPersonCertName',
|
|
113
121
|
ownerId: 'OwnerId',
|
|
114
|
-
rate: 'Rate',
|
|
115
122
|
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
116
123
|
resourceOwnerId: 'ResourceOwnerId',
|
|
117
124
|
};
|
|
@@ -120,11 +127,10 @@ export class DescribePhoneNumberAnalysisRequest extends $tea.Model {
|
|
|
120
127
|
static types(): { [key: string]: any } {
|
|
121
128
|
return {
|
|
122
129
|
authCode: 'string',
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
130
|
+
epCertName: 'string',
|
|
131
|
+
epCertNo: 'string',
|
|
132
|
+
legalPersonCertName: 'string',
|
|
126
133
|
ownerId: 'number',
|
|
127
|
-
rate: 'number',
|
|
128
134
|
resourceOwnerAccount: 'string',
|
|
129
135
|
resourceOwnerId: 'number',
|
|
130
136
|
};
|
|
@@ -135,13 +141,15 @@ export class DescribePhoneNumberAnalysisRequest extends $tea.Model {
|
|
|
135
141
|
}
|
|
136
142
|
}
|
|
137
143
|
|
|
138
|
-
export class
|
|
144
|
+
export class CompanyThreeElementsVerificationResponseBody extends $tea.Model {
|
|
145
|
+
accessDeniedDetail?: string;
|
|
139
146
|
code?: string;
|
|
140
|
-
data?:
|
|
147
|
+
data?: CompanyThreeElementsVerificationResponseBodyData;
|
|
141
148
|
message?: string;
|
|
142
149
|
requestId?: string;
|
|
143
150
|
static names(): { [key: string]: string } {
|
|
144
151
|
return {
|
|
152
|
+
accessDeniedDetail: 'AccessDeniedDetail',
|
|
145
153
|
code: 'Code',
|
|
146
154
|
data: 'Data',
|
|
147
155
|
message: 'Message',
|
|
@@ -151,8 +159,9 @@ export class DescribePhoneNumberAnalysisResponseBody extends $tea.Model {
|
|
|
151
159
|
|
|
152
160
|
static types(): { [key: string]: any } {
|
|
153
161
|
return {
|
|
162
|
+
accessDeniedDetail: 'string',
|
|
154
163
|
code: 'string',
|
|
155
|
-
data:
|
|
164
|
+
data: CompanyThreeElementsVerificationResponseBodyData,
|
|
156
165
|
message: 'string',
|
|
157
166
|
requestId: 'string',
|
|
158
167
|
};
|
|
@@ -163,10 +172,10 @@ export class DescribePhoneNumberAnalysisResponseBody extends $tea.Model {
|
|
|
163
172
|
}
|
|
164
173
|
}
|
|
165
174
|
|
|
166
|
-
export class
|
|
175
|
+
export class CompanyThreeElementsVerificationResponse extends $tea.Model {
|
|
167
176
|
headers: { [key: string]: string };
|
|
168
177
|
statusCode: number;
|
|
169
|
-
body:
|
|
178
|
+
body: CompanyThreeElementsVerificationResponseBody;
|
|
170
179
|
static names(): { [key: string]: string } {
|
|
171
180
|
return {
|
|
172
181
|
headers: 'headers',
|
|
@@ -179,7 +188,7 @@ export class DescribePhoneNumberAnalysisResponse extends $tea.Model {
|
|
|
179
188
|
return {
|
|
180
189
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
181
190
|
statusCode: 'number',
|
|
182
|
-
body:
|
|
191
|
+
body: CompanyThreeElementsVerificationResponseBody,
|
|
183
192
|
};
|
|
184
193
|
}
|
|
185
194
|
|
|
@@ -188,20 +197,18 @@ export class DescribePhoneNumberAnalysisResponse extends $tea.Model {
|
|
|
188
197
|
}
|
|
189
198
|
}
|
|
190
199
|
|
|
191
|
-
export class
|
|
200
|
+
export class CompanyTwoElementsVerificationRequest extends $tea.Model {
|
|
192
201
|
authCode?: string;
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
mask?: string;
|
|
202
|
+
epCertName?: string;
|
|
203
|
+
epCertNo?: string;
|
|
196
204
|
ownerId?: number;
|
|
197
205
|
resourceOwnerAccount?: string;
|
|
198
206
|
resourceOwnerId?: number;
|
|
199
207
|
static names(): { [key: string]: string } {
|
|
200
208
|
return {
|
|
201
209
|
authCode: 'AuthCode',
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
mask: 'Mask',
|
|
210
|
+
epCertName: 'EpCertName',
|
|
211
|
+
epCertNo: 'EpCertNo',
|
|
205
212
|
ownerId: 'OwnerId',
|
|
206
213
|
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
207
214
|
resourceOwnerId: 'ResourceOwnerId',
|
|
@@ -211,9 +218,8 @@ export class DescribePhoneNumberOnlineTimeRequest extends $tea.Model {
|
|
|
211
218
|
static types(): { [key: string]: any } {
|
|
212
219
|
return {
|
|
213
220
|
authCode: 'string',
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
mask: 'string',
|
|
221
|
+
epCertName: 'string',
|
|
222
|
+
epCertNo: 'string',
|
|
217
223
|
ownerId: 'number',
|
|
218
224
|
resourceOwnerAccount: 'string',
|
|
219
225
|
resourceOwnerId: 'number',
|
|
@@ -225,13 +231,15 @@ export class DescribePhoneNumberOnlineTimeRequest extends $tea.Model {
|
|
|
225
231
|
}
|
|
226
232
|
}
|
|
227
233
|
|
|
228
|
-
export class
|
|
234
|
+
export class CompanyTwoElementsVerificationResponseBody extends $tea.Model {
|
|
235
|
+
accessDeniedDetail?: string;
|
|
229
236
|
code?: string;
|
|
230
|
-
data?:
|
|
237
|
+
data?: CompanyTwoElementsVerificationResponseBodyData;
|
|
231
238
|
message?: string;
|
|
232
239
|
requestId?: string;
|
|
233
240
|
static names(): { [key: string]: string } {
|
|
234
241
|
return {
|
|
242
|
+
accessDeniedDetail: 'AccessDeniedDetail',
|
|
235
243
|
code: 'Code',
|
|
236
244
|
data: 'Data',
|
|
237
245
|
message: 'Message',
|
|
@@ -241,8 +249,9 @@ export class DescribePhoneNumberOnlineTimeResponseBody extends $tea.Model {
|
|
|
241
249
|
|
|
242
250
|
static types(): { [key: string]: any } {
|
|
243
251
|
return {
|
|
252
|
+
accessDeniedDetail: 'string',
|
|
244
253
|
code: 'string',
|
|
245
|
-
data:
|
|
254
|
+
data: CompanyTwoElementsVerificationResponseBodyData,
|
|
246
255
|
message: 'string',
|
|
247
256
|
requestId: 'string',
|
|
248
257
|
};
|
|
@@ -253,10 +262,10 @@ export class DescribePhoneNumberOnlineTimeResponseBody extends $tea.Model {
|
|
|
253
262
|
}
|
|
254
263
|
}
|
|
255
264
|
|
|
256
|
-
export class
|
|
265
|
+
export class CompanyTwoElementsVerificationResponse extends $tea.Model {
|
|
257
266
|
headers: { [key: string]: string };
|
|
258
267
|
statusCode: number;
|
|
259
|
-
body:
|
|
268
|
+
body: CompanyTwoElementsVerificationResponseBody;
|
|
260
269
|
static names(): { [key: string]: string } {
|
|
261
270
|
return {
|
|
262
271
|
headers: 'headers',
|
|
@@ -269,7 +278,7 @@ export class DescribePhoneNumberOnlineTimeResponse extends $tea.Model {
|
|
|
269
278
|
return {
|
|
270
279
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
271
280
|
statusCode: 'number',
|
|
272
|
-
body:
|
|
281
|
+
body: CompanyTwoElementsVerificationResponseBody,
|
|
273
282
|
};
|
|
274
283
|
}
|
|
275
284
|
|
|
@@ -278,7 +287,7 @@ export class DescribePhoneNumberOnlineTimeResponse extends $tea.Model {
|
|
|
278
287
|
}
|
|
279
288
|
}
|
|
280
289
|
|
|
281
|
-
export class
|
|
290
|
+
export class DescribeEmptyNumberRequest extends $tea.Model {
|
|
282
291
|
authCode?: string;
|
|
283
292
|
inputNumber?: string;
|
|
284
293
|
mask?: string;
|
|
@@ -312,9 +321,9 @@ export class DescribePhoneNumberOperatorAttributeRequest extends $tea.Model {
|
|
|
312
321
|
}
|
|
313
322
|
}
|
|
314
323
|
|
|
315
|
-
export class
|
|
324
|
+
export class DescribeEmptyNumberResponseBody extends $tea.Model {
|
|
316
325
|
code?: string;
|
|
317
|
-
data?:
|
|
326
|
+
data?: DescribeEmptyNumberResponseBodyData;
|
|
318
327
|
message?: string;
|
|
319
328
|
requestId?: string;
|
|
320
329
|
static names(): { [key: string]: string } {
|
|
@@ -329,7 +338,7 @@ export class DescribePhoneNumberOperatorAttributeResponseBody extends $tea.Model
|
|
|
329
338
|
static types(): { [key: string]: any } {
|
|
330
339
|
return {
|
|
331
340
|
code: 'string',
|
|
332
|
-
data:
|
|
341
|
+
data: DescribeEmptyNumberResponseBodyData,
|
|
333
342
|
message: 'string',
|
|
334
343
|
requestId: 'string',
|
|
335
344
|
};
|
|
@@ -340,10 +349,10 @@ export class DescribePhoneNumberOperatorAttributeResponseBody extends $tea.Model
|
|
|
340
349
|
}
|
|
341
350
|
}
|
|
342
351
|
|
|
343
|
-
export class
|
|
352
|
+
export class DescribeEmptyNumberResponse extends $tea.Model {
|
|
344
353
|
headers: { [key: string]: string };
|
|
345
354
|
statusCode: number;
|
|
346
|
-
body:
|
|
355
|
+
body: DescribeEmptyNumberResponseBody;
|
|
347
356
|
static names(): { [key: string]: string } {
|
|
348
357
|
return {
|
|
349
358
|
headers: 'headers',
|
|
@@ -356,7 +365,7 @@ export class DescribePhoneNumberOperatorAttributeResponse extends $tea.Model {
|
|
|
356
365
|
return {
|
|
357
366
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
358
367
|
statusCode: 'number',
|
|
359
|
-
body:
|
|
368
|
+
body: DescribeEmptyNumberResponseBody,
|
|
360
369
|
};
|
|
361
370
|
}
|
|
362
371
|
|
|
@@ -365,23 +374,25 @@ export class DescribePhoneNumberOperatorAttributeResponse extends $tea.Model {
|
|
|
365
374
|
}
|
|
366
375
|
}
|
|
367
376
|
|
|
368
|
-
export class
|
|
377
|
+
export class DescribePhoneNumberAnalysisRequest extends $tea.Model {
|
|
369
378
|
authCode?: string;
|
|
370
379
|
inputNumber?: string;
|
|
371
380
|
mask?: string;
|
|
381
|
+
numberType?: number;
|
|
372
382
|
ownerId?: number;
|
|
383
|
+
rate?: number;
|
|
373
384
|
resourceOwnerAccount?: string;
|
|
374
385
|
resourceOwnerId?: number;
|
|
375
|
-
startTime?: string;
|
|
376
386
|
static names(): { [key: string]: string } {
|
|
377
387
|
return {
|
|
378
388
|
authCode: 'AuthCode',
|
|
379
389
|
inputNumber: 'InputNumber',
|
|
380
390
|
mask: 'Mask',
|
|
391
|
+
numberType: 'NumberType',
|
|
381
392
|
ownerId: 'OwnerId',
|
|
393
|
+
rate: 'Rate',
|
|
382
394
|
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
383
395
|
resourceOwnerId: 'ResourceOwnerId',
|
|
384
|
-
startTime: 'StartTime',
|
|
385
396
|
};
|
|
386
397
|
}
|
|
387
398
|
|
|
@@ -390,10 +401,11 @@ export class DescribePhoneTwiceTelVerifyRequest extends $tea.Model {
|
|
|
390
401
|
authCode: 'string',
|
|
391
402
|
inputNumber: 'string',
|
|
392
403
|
mask: 'string',
|
|
404
|
+
numberType: 'number',
|
|
393
405
|
ownerId: 'number',
|
|
406
|
+
rate: 'number',
|
|
394
407
|
resourceOwnerAccount: 'string',
|
|
395
408
|
resourceOwnerId: 'number',
|
|
396
|
-
startTime: 'string',
|
|
397
409
|
};
|
|
398
410
|
}
|
|
399
411
|
|
|
@@ -402,9 +414,9 @@ export class DescribePhoneTwiceTelVerifyRequest extends $tea.Model {
|
|
|
402
414
|
}
|
|
403
415
|
}
|
|
404
416
|
|
|
405
|
-
export class
|
|
417
|
+
export class DescribePhoneNumberAnalysisResponseBody extends $tea.Model {
|
|
406
418
|
code?: string;
|
|
407
|
-
data?:
|
|
419
|
+
data?: DescribePhoneNumberAnalysisResponseBodyData;
|
|
408
420
|
message?: string;
|
|
409
421
|
requestId?: string;
|
|
410
422
|
static names(): { [key: string]: string } {
|
|
@@ -419,7 +431,7 @@ export class DescribePhoneTwiceTelVerifyResponseBody extends $tea.Model {
|
|
|
419
431
|
static types(): { [key: string]: any } {
|
|
420
432
|
return {
|
|
421
433
|
code: 'string',
|
|
422
|
-
data:
|
|
434
|
+
data: DescribePhoneNumberAnalysisResponseBodyData,
|
|
423
435
|
message: 'string',
|
|
424
436
|
requestId: 'string',
|
|
425
437
|
};
|
|
@@ -430,10 +442,10 @@ export class DescribePhoneTwiceTelVerifyResponseBody extends $tea.Model {
|
|
|
430
442
|
}
|
|
431
443
|
}
|
|
432
444
|
|
|
433
|
-
export class
|
|
445
|
+
export class DescribePhoneNumberAnalysisResponse extends $tea.Model {
|
|
434
446
|
headers: { [key: string]: string };
|
|
435
447
|
statusCode: number;
|
|
436
|
-
body:
|
|
448
|
+
body: DescribePhoneNumberAnalysisResponseBody;
|
|
437
449
|
static names(): { [key: string]: string } {
|
|
438
450
|
return {
|
|
439
451
|
headers: 'headers',
|
|
@@ -446,7 +458,7 @@ export class DescribePhoneTwiceTelVerifyResponse extends $tea.Model {
|
|
|
446
458
|
return {
|
|
447
459
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
448
460
|
statusCode: 'number',
|
|
449
|
-
body:
|
|
461
|
+
body: DescribePhoneNumberAnalysisResponseBody,
|
|
450
462
|
};
|
|
451
463
|
}
|
|
452
464
|
|
|
@@ -455,19 +467,21 @@ export class DescribePhoneTwiceTelVerifyResponse extends $tea.Model {
|
|
|
455
467
|
}
|
|
456
468
|
}
|
|
457
469
|
|
|
458
|
-
export class
|
|
470
|
+
export class DescribePhoneNumberAnalysisAIRequest extends $tea.Model {
|
|
459
471
|
authCode?: string;
|
|
460
472
|
inputNumber?: string;
|
|
461
|
-
|
|
473
|
+
modelConfig?: string;
|
|
462
474
|
ownerId?: number;
|
|
475
|
+
rate?: number;
|
|
463
476
|
resourceOwnerAccount?: string;
|
|
464
477
|
resourceOwnerId?: number;
|
|
465
478
|
static names(): { [key: string]: string } {
|
|
466
479
|
return {
|
|
467
480
|
authCode: 'AuthCode',
|
|
468
481
|
inputNumber: 'InputNumber',
|
|
469
|
-
|
|
482
|
+
modelConfig: 'ModelConfig',
|
|
470
483
|
ownerId: 'OwnerId',
|
|
484
|
+
rate: 'Rate',
|
|
471
485
|
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
472
486
|
resourceOwnerId: 'ResourceOwnerId',
|
|
473
487
|
};
|
|
@@ -477,8 +491,9 @@ export class InvalidPhoneNumberFilterRequest extends $tea.Model {
|
|
|
477
491
|
return {
|
|
478
492
|
authCode: 'string',
|
|
479
493
|
inputNumber: 'string',
|
|
480
|
-
|
|
494
|
+
modelConfig: 'string',
|
|
481
495
|
ownerId: 'number',
|
|
496
|
+
rate: 'number',
|
|
482
497
|
resourceOwnerAccount: 'string',
|
|
483
498
|
resourceOwnerId: 'number',
|
|
484
499
|
};
|
|
@@ -489,9 +504,9 @@ export class InvalidPhoneNumberFilterRequest extends $tea.Model {
|
|
|
489
504
|
}
|
|
490
505
|
}
|
|
491
506
|
|
|
492
|
-
export class
|
|
507
|
+
export class DescribePhoneNumberAnalysisAIResponseBody extends $tea.Model {
|
|
493
508
|
code?: string;
|
|
494
|
-
data?:
|
|
509
|
+
data?: DescribePhoneNumberAnalysisAIResponseBodyData;
|
|
495
510
|
message?: string;
|
|
496
511
|
requestId?: string;
|
|
497
512
|
static names(): { [key: string]: string } {
|
|
@@ -506,7 +521,7 @@ export class InvalidPhoneNumberFilterResponseBody extends $tea.Model {
|
|
|
506
521
|
static types(): { [key: string]: any } {
|
|
507
522
|
return {
|
|
508
523
|
code: 'string',
|
|
509
|
-
data:
|
|
524
|
+
data: DescribePhoneNumberAnalysisAIResponseBodyData,
|
|
510
525
|
message: 'string',
|
|
511
526
|
requestId: 'string',
|
|
512
527
|
};
|
|
@@ -517,10 +532,10 @@ export class InvalidPhoneNumberFilterResponseBody extends $tea.Model {
|
|
|
517
532
|
}
|
|
518
533
|
}
|
|
519
534
|
|
|
520
|
-
export class
|
|
535
|
+
export class DescribePhoneNumberAnalysisAIResponse extends $tea.Model {
|
|
521
536
|
headers: { [key: string]: string };
|
|
522
537
|
statusCode: number;
|
|
523
|
-
body:
|
|
538
|
+
body: DescribePhoneNumberAnalysisAIResponseBody;
|
|
524
539
|
static names(): { [key: string]: string } {
|
|
525
540
|
return {
|
|
526
541
|
headers: 'headers',
|
|
@@ -533,7 +548,7 @@ export class InvalidPhoneNumberFilterResponse extends $tea.Model {
|
|
|
533
548
|
return {
|
|
534
549
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
535
550
|
statusCode: 'number',
|
|
536
|
-
body:
|
|
551
|
+
body: DescribePhoneNumberAnalysisAIResponseBody,
|
|
537
552
|
};
|
|
538
553
|
}
|
|
539
554
|
|
|
@@ -542,19 +557,15 @@ export class InvalidPhoneNumberFilterResponse extends $tea.Model {
|
|
|
542
557
|
}
|
|
543
558
|
}
|
|
544
559
|
|
|
545
|
-
export class
|
|
546
|
-
authCode?: string;
|
|
547
|
-
inputNumber?: string;
|
|
548
|
-
mask?: string;
|
|
560
|
+
export class DescribePhoneNumberAttributeRequest extends $tea.Model {
|
|
549
561
|
ownerId?: number;
|
|
562
|
+
phoneNumber?: string;
|
|
550
563
|
resourceOwnerAccount?: string;
|
|
551
564
|
resourceOwnerId?: number;
|
|
552
565
|
static names(): { [key: string]: string } {
|
|
553
566
|
return {
|
|
554
|
-
authCode: 'AuthCode',
|
|
555
|
-
inputNumber: 'InputNumber',
|
|
556
|
-
mask: 'Mask',
|
|
557
567
|
ownerId: 'OwnerId',
|
|
568
|
+
phoneNumber: 'PhoneNumber',
|
|
558
569
|
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
559
570
|
resourceOwnerId: 'ResourceOwnerId',
|
|
560
571
|
};
|
|
@@ -562,10 +573,8 @@ export class PhoneNumberEncryptRequest extends $tea.Model {
|
|
|
562
573
|
|
|
563
574
|
static types(): { [key: string]: any } {
|
|
564
575
|
return {
|
|
565
|
-
authCode: 'string',
|
|
566
|
-
inputNumber: 'string',
|
|
567
|
-
mask: 'string',
|
|
568
576
|
ownerId: 'number',
|
|
577
|
+
phoneNumber: 'string',
|
|
569
578
|
resourceOwnerAccount: 'string',
|
|
570
579
|
resourceOwnerId: 'number',
|
|
571
580
|
};
|
|
@@ -576,16 +585,16 @@ export class PhoneNumberEncryptRequest extends $tea.Model {
|
|
|
576
585
|
}
|
|
577
586
|
}
|
|
578
587
|
|
|
579
|
-
export class
|
|
588
|
+
export class DescribePhoneNumberAttributeResponseBody extends $tea.Model {
|
|
580
589
|
code?: string;
|
|
581
|
-
data?: PhoneNumberEncryptResponseBodyData[];
|
|
582
590
|
message?: string;
|
|
591
|
+
phoneNumberAttribute?: DescribePhoneNumberAttributeResponseBodyPhoneNumberAttribute;
|
|
583
592
|
requestId?: string;
|
|
584
593
|
static names(): { [key: string]: string } {
|
|
585
594
|
return {
|
|
586
595
|
code: 'Code',
|
|
587
|
-
data: 'Data',
|
|
588
596
|
message: 'Message',
|
|
597
|
+
phoneNumberAttribute: 'PhoneNumberAttribute',
|
|
589
598
|
requestId: 'RequestId',
|
|
590
599
|
};
|
|
591
600
|
}
|
|
@@ -593,8 +602,8 @@ export class PhoneNumberEncryptResponseBody extends $tea.Model {
|
|
|
593
602
|
static types(): { [key: string]: any } {
|
|
594
603
|
return {
|
|
595
604
|
code: 'string',
|
|
596
|
-
data: { 'type': 'array', 'itemType': PhoneNumberEncryptResponseBodyData },
|
|
597
605
|
message: 'string',
|
|
606
|
+
phoneNumberAttribute: DescribePhoneNumberAttributeResponseBodyPhoneNumberAttribute,
|
|
598
607
|
requestId: 'string',
|
|
599
608
|
};
|
|
600
609
|
}
|
|
@@ -604,10 +613,10 @@ export class PhoneNumberEncryptResponseBody extends $tea.Model {
|
|
|
604
613
|
}
|
|
605
614
|
}
|
|
606
615
|
|
|
607
|
-
export class
|
|
616
|
+
export class DescribePhoneNumberAttributeResponse extends $tea.Model {
|
|
608
617
|
headers: { [key: string]: string };
|
|
609
618
|
statusCode: number;
|
|
610
|
-
body:
|
|
619
|
+
body: DescribePhoneNumberAttributeResponseBody;
|
|
611
620
|
static names(): { [key: string]: string } {
|
|
612
621
|
return {
|
|
613
622
|
headers: 'headers',
|
|
@@ -620,7 +629,7 @@ export class PhoneNumberEncryptResponse extends $tea.Model {
|
|
|
620
629
|
return {
|
|
621
630
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
622
631
|
statusCode: 'number',
|
|
623
|
-
body:
|
|
632
|
+
body: DescribePhoneNumberAttributeResponseBody,
|
|
624
633
|
};
|
|
625
634
|
}
|
|
626
635
|
|
|
@@ -629,8 +638,9 @@ export class PhoneNumberEncryptResponse extends $tea.Model {
|
|
|
629
638
|
}
|
|
630
639
|
}
|
|
631
640
|
|
|
632
|
-
export class
|
|
641
|
+
export class DescribePhoneNumberOnlineTimeRequest extends $tea.Model {
|
|
633
642
|
authCode?: string;
|
|
643
|
+
carrier?: string;
|
|
634
644
|
inputNumber?: string;
|
|
635
645
|
mask?: string;
|
|
636
646
|
ownerId?: number;
|
|
@@ -639,6 +649,7 @@ export class PhoneNumberStatusForAccountRequest extends $tea.Model {
|
|
|
639
649
|
static names(): { [key: string]: string } {
|
|
640
650
|
return {
|
|
641
651
|
authCode: 'AuthCode',
|
|
652
|
+
carrier: 'Carrier',
|
|
642
653
|
inputNumber: 'InputNumber',
|
|
643
654
|
mask: 'Mask',
|
|
644
655
|
ownerId: 'OwnerId',
|
|
@@ -650,6 +661,7 @@ export class PhoneNumberStatusForAccountRequest extends $tea.Model {
|
|
|
650
661
|
static types(): { [key: string]: any } {
|
|
651
662
|
return {
|
|
652
663
|
authCode: 'string',
|
|
664
|
+
carrier: 'string',
|
|
653
665
|
inputNumber: 'string',
|
|
654
666
|
mask: 'string',
|
|
655
667
|
ownerId: 'number',
|
|
@@ -663,9 +675,9 @@ export class PhoneNumberStatusForAccountRequest extends $tea.Model {
|
|
|
663
675
|
}
|
|
664
676
|
}
|
|
665
677
|
|
|
666
|
-
export class
|
|
678
|
+
export class DescribePhoneNumberOnlineTimeResponseBody extends $tea.Model {
|
|
667
679
|
code?: string;
|
|
668
|
-
data?:
|
|
680
|
+
data?: DescribePhoneNumberOnlineTimeResponseBodyData;
|
|
669
681
|
message?: string;
|
|
670
682
|
requestId?: string;
|
|
671
683
|
static names(): { [key: string]: string } {
|
|
@@ -680,7 +692,7 @@ export class PhoneNumberStatusForAccountResponseBody extends $tea.Model {
|
|
|
680
692
|
static types(): { [key: string]: any } {
|
|
681
693
|
return {
|
|
682
694
|
code: 'string',
|
|
683
|
-
data:
|
|
695
|
+
data: DescribePhoneNumberOnlineTimeResponseBodyData,
|
|
684
696
|
message: 'string',
|
|
685
697
|
requestId: 'string',
|
|
686
698
|
};
|
|
@@ -691,10 +703,10 @@ export class PhoneNumberStatusForAccountResponseBody extends $tea.Model {
|
|
|
691
703
|
}
|
|
692
704
|
}
|
|
693
705
|
|
|
694
|
-
export class
|
|
706
|
+
export class DescribePhoneNumberOnlineTimeResponse extends $tea.Model {
|
|
695
707
|
headers: { [key: string]: string };
|
|
696
708
|
statusCode: number;
|
|
697
|
-
body:
|
|
709
|
+
body: DescribePhoneNumberOnlineTimeResponseBody;
|
|
698
710
|
static names(): { [key: string]: string } {
|
|
699
711
|
return {
|
|
700
712
|
headers: 'headers',
|
|
@@ -707,7 +719,7 @@ export class PhoneNumberStatusForAccountResponse extends $tea.Model {
|
|
|
707
719
|
return {
|
|
708
720
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
709
721
|
statusCode: 'number',
|
|
710
|
-
body:
|
|
722
|
+
body: DescribePhoneNumberOnlineTimeResponseBody,
|
|
711
723
|
};
|
|
712
724
|
}
|
|
713
725
|
|
|
@@ -716,7 +728,7 @@ export class PhoneNumberStatusForAccountResponse extends $tea.Model {
|
|
|
716
728
|
}
|
|
717
729
|
}
|
|
718
730
|
|
|
719
|
-
export class
|
|
731
|
+
export class DescribePhoneNumberOperatorAttributeRequest extends $tea.Model {
|
|
720
732
|
authCode?: string;
|
|
721
733
|
inputNumber?: string;
|
|
722
734
|
mask?: string;
|
|
@@ -750,9 +762,9 @@ export class PhoneNumberStatusForPublicRequest extends $tea.Model {
|
|
|
750
762
|
}
|
|
751
763
|
}
|
|
752
764
|
|
|
753
|
-
export class
|
|
765
|
+
export class DescribePhoneNumberOperatorAttributeResponseBody extends $tea.Model {
|
|
754
766
|
code?: string;
|
|
755
|
-
data?:
|
|
767
|
+
data?: DescribePhoneNumberOperatorAttributeResponseBodyData;
|
|
756
768
|
message?: string;
|
|
757
769
|
requestId?: string;
|
|
758
770
|
static names(): { [key: string]: string } {
|
|
@@ -767,7 +779,7 @@ export class PhoneNumberStatusForPublicResponseBody extends $tea.Model {
|
|
|
767
779
|
static types(): { [key: string]: any } {
|
|
768
780
|
return {
|
|
769
781
|
code: 'string',
|
|
770
|
-
data:
|
|
782
|
+
data: DescribePhoneNumberOperatorAttributeResponseBodyData,
|
|
771
783
|
message: 'string',
|
|
772
784
|
requestId: 'string',
|
|
773
785
|
};
|
|
@@ -778,10 +790,10 @@ export class PhoneNumberStatusForPublicResponseBody extends $tea.Model {
|
|
|
778
790
|
}
|
|
779
791
|
}
|
|
780
792
|
|
|
781
|
-
export class
|
|
793
|
+
export class DescribePhoneNumberOperatorAttributeResponse extends $tea.Model {
|
|
782
794
|
headers: { [key: string]: string };
|
|
783
795
|
statusCode: number;
|
|
784
|
-
body:
|
|
796
|
+
body: DescribePhoneNumberOperatorAttributeResponseBody;
|
|
785
797
|
static names(): { [key: string]: string } {
|
|
786
798
|
return {
|
|
787
799
|
headers: 'headers',
|
|
@@ -794,7 +806,7 @@ export class PhoneNumberStatusForPublicResponse extends $tea.Model {
|
|
|
794
806
|
return {
|
|
795
807
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
796
808
|
statusCode: 'number',
|
|
797
|
-
body:
|
|
809
|
+
body: DescribePhoneNumberOperatorAttributeResponseBody,
|
|
798
810
|
};
|
|
799
811
|
}
|
|
800
812
|
|
|
@@ -803,13 +815,14 @@ export class PhoneNumberStatusForPublicResponse extends $tea.Model {
|
|
|
803
815
|
}
|
|
804
816
|
}
|
|
805
817
|
|
|
806
|
-
export class
|
|
818
|
+
export class DescribePhoneTwiceTelVerifyRequest extends $tea.Model {
|
|
807
819
|
authCode?: string;
|
|
808
820
|
inputNumber?: string;
|
|
809
821
|
mask?: string;
|
|
810
822
|
ownerId?: number;
|
|
811
823
|
resourceOwnerAccount?: string;
|
|
812
824
|
resourceOwnerId?: number;
|
|
825
|
+
startTime?: string;
|
|
813
826
|
static names(): { [key: string]: string } {
|
|
814
827
|
return {
|
|
815
828
|
authCode: 'AuthCode',
|
|
@@ -818,6 +831,7 @@ export class PhoneNumberStatusForRealRequest extends $tea.Model {
|
|
|
818
831
|
ownerId: 'OwnerId',
|
|
819
832
|
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
820
833
|
resourceOwnerId: 'ResourceOwnerId',
|
|
834
|
+
startTime: 'StartTime',
|
|
821
835
|
};
|
|
822
836
|
}
|
|
823
837
|
|
|
@@ -829,6 +843,7 @@ export class PhoneNumberStatusForRealRequest extends $tea.Model {
|
|
|
829
843
|
ownerId: 'number',
|
|
830
844
|
resourceOwnerAccount: 'string',
|
|
831
845
|
resourceOwnerId: 'number',
|
|
846
|
+
startTime: 'string',
|
|
832
847
|
};
|
|
833
848
|
}
|
|
834
849
|
|
|
@@ -837,9 +852,9 @@ export class PhoneNumberStatusForRealRequest extends $tea.Model {
|
|
|
837
852
|
}
|
|
838
853
|
}
|
|
839
854
|
|
|
840
|
-
export class
|
|
855
|
+
export class DescribePhoneTwiceTelVerifyResponseBody extends $tea.Model {
|
|
841
856
|
code?: string;
|
|
842
|
-
data?:
|
|
857
|
+
data?: DescribePhoneTwiceTelVerifyResponseBodyData;
|
|
843
858
|
message?: string;
|
|
844
859
|
requestId?: string;
|
|
845
860
|
static names(): { [key: string]: string } {
|
|
@@ -854,7 +869,7 @@ export class PhoneNumberStatusForRealResponseBody extends $tea.Model {
|
|
|
854
869
|
static types(): { [key: string]: any } {
|
|
855
870
|
return {
|
|
856
871
|
code: 'string',
|
|
857
|
-
data:
|
|
872
|
+
data: DescribePhoneTwiceTelVerifyResponseBodyData,
|
|
858
873
|
message: 'string',
|
|
859
874
|
requestId: 'string',
|
|
860
875
|
};
|
|
@@ -865,10 +880,10 @@ export class PhoneNumberStatusForRealResponseBody extends $tea.Model {
|
|
|
865
880
|
}
|
|
866
881
|
}
|
|
867
882
|
|
|
868
|
-
export class
|
|
883
|
+
export class DescribePhoneTwiceTelVerifyResponse extends $tea.Model {
|
|
869
884
|
headers: { [key: string]: string };
|
|
870
885
|
statusCode: number;
|
|
871
|
-
body:
|
|
886
|
+
body: DescribePhoneTwiceTelVerifyResponseBody;
|
|
872
887
|
static names(): { [key: string]: string } {
|
|
873
888
|
return {
|
|
874
889
|
headers: 'headers',
|
|
@@ -881,7 +896,7 @@ export class PhoneNumberStatusForRealResponse extends $tea.Model {
|
|
|
881
896
|
return {
|
|
882
897
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
883
898
|
statusCode: 'number',
|
|
884
|
-
body:
|
|
899
|
+
body: DescribePhoneTwiceTelVerifyResponseBody,
|
|
885
900
|
};
|
|
886
901
|
}
|
|
887
902
|
|
|
@@ -890,7 +905,7 @@ export class PhoneNumberStatusForRealResponse extends $tea.Model {
|
|
|
890
905
|
}
|
|
891
906
|
}
|
|
892
907
|
|
|
893
|
-
export class
|
|
908
|
+
export class InvalidPhoneNumberFilterRequest extends $tea.Model {
|
|
894
909
|
authCode?: string;
|
|
895
910
|
inputNumber?: string;
|
|
896
911
|
mask?: string;
|
|
@@ -924,9 +939,9 @@ export class PhoneNumberStatusForSmsRequest extends $tea.Model {
|
|
|
924
939
|
}
|
|
925
940
|
}
|
|
926
941
|
|
|
927
|
-
export class
|
|
942
|
+
export class InvalidPhoneNumberFilterResponseBody extends $tea.Model {
|
|
928
943
|
code?: string;
|
|
929
|
-
data?:
|
|
944
|
+
data?: InvalidPhoneNumberFilterResponseBodyData[];
|
|
930
945
|
message?: string;
|
|
931
946
|
requestId?: string;
|
|
932
947
|
static names(): { [key: string]: string } {
|
|
@@ -941,7 +956,7 @@ export class PhoneNumberStatusForSmsResponseBody extends $tea.Model {
|
|
|
941
956
|
static types(): { [key: string]: any } {
|
|
942
957
|
return {
|
|
943
958
|
code: 'string',
|
|
944
|
-
data:
|
|
959
|
+
data: { 'type': 'array', 'itemType': InvalidPhoneNumberFilterResponseBodyData },
|
|
945
960
|
message: 'string',
|
|
946
961
|
requestId: 'string',
|
|
947
962
|
};
|
|
@@ -952,10 +967,10 @@ export class PhoneNumberStatusForSmsResponseBody extends $tea.Model {
|
|
|
952
967
|
}
|
|
953
968
|
}
|
|
954
969
|
|
|
955
|
-
export class
|
|
970
|
+
export class InvalidPhoneNumberFilterResponse extends $tea.Model {
|
|
956
971
|
headers: { [key: string]: string };
|
|
957
972
|
statusCode: number;
|
|
958
|
-
body:
|
|
973
|
+
body: InvalidPhoneNumberFilterResponseBody;
|
|
959
974
|
static names(): { [key: string]: string } {
|
|
960
975
|
return {
|
|
961
976
|
headers: 'headers',
|
|
@@ -968,7 +983,7 @@ export class PhoneNumberStatusForSmsResponse extends $tea.Model {
|
|
|
968
983
|
return {
|
|
969
984
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
970
985
|
statusCode: 'number',
|
|
971
|
-
body:
|
|
986
|
+
body: InvalidPhoneNumberFilterResponseBody,
|
|
972
987
|
};
|
|
973
988
|
}
|
|
974
989
|
|
|
@@ -977,7 +992,7 @@ export class PhoneNumberStatusForSmsResponse extends $tea.Model {
|
|
|
977
992
|
}
|
|
978
993
|
}
|
|
979
994
|
|
|
980
|
-
export class
|
|
995
|
+
export class PhoneNumberConvertServiceRequest extends $tea.Model {
|
|
981
996
|
authCode?: string;
|
|
982
997
|
inputNumber?: string;
|
|
983
998
|
mask?: string;
|
|
@@ -1011,9 +1026,9 @@ export class PhoneNumberStatusForVirtualRequest extends $tea.Model {
|
|
|
1011
1026
|
}
|
|
1012
1027
|
}
|
|
1013
1028
|
|
|
1014
|
-
export class
|
|
1029
|
+
export class PhoneNumberConvertServiceResponseBody extends $tea.Model {
|
|
1015
1030
|
code?: string;
|
|
1016
|
-
data?:
|
|
1031
|
+
data?: PhoneNumberConvertServiceResponseBodyData[];
|
|
1017
1032
|
message?: string;
|
|
1018
1033
|
requestId?: string;
|
|
1019
1034
|
static names(): { [key: string]: string } {
|
|
@@ -1028,7 +1043,7 @@ export class PhoneNumberStatusForVirtualResponseBody extends $tea.Model {
|
|
|
1028
1043
|
static types(): { [key: string]: any } {
|
|
1029
1044
|
return {
|
|
1030
1045
|
code: 'string',
|
|
1031
|
-
data:
|
|
1046
|
+
data: { 'type': 'array', 'itemType': PhoneNumberConvertServiceResponseBodyData },
|
|
1032
1047
|
message: 'string',
|
|
1033
1048
|
requestId: 'string',
|
|
1034
1049
|
};
|
|
@@ -1039,10 +1054,10 @@ export class PhoneNumberStatusForVirtualResponseBody extends $tea.Model {
|
|
|
1039
1054
|
}
|
|
1040
1055
|
}
|
|
1041
1056
|
|
|
1042
|
-
export class
|
|
1057
|
+
export class PhoneNumberConvertServiceResponse extends $tea.Model {
|
|
1043
1058
|
headers: { [key: string]: string };
|
|
1044
1059
|
statusCode: number;
|
|
1045
|
-
body:
|
|
1060
|
+
body: PhoneNumberConvertServiceResponseBody;
|
|
1046
1061
|
static names(): { [key: string]: string } {
|
|
1047
1062
|
return {
|
|
1048
1063
|
headers: 'headers',
|
|
@@ -1055,7 +1070,7 @@ export class PhoneNumberStatusForVirtualResponse extends $tea.Model {
|
|
|
1055
1070
|
return {
|
|
1056
1071
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1057
1072
|
statusCode: 'number',
|
|
1058
|
-
body:
|
|
1073
|
+
body: PhoneNumberConvertServiceResponseBody,
|
|
1059
1074
|
};
|
|
1060
1075
|
}
|
|
1061
1076
|
|
|
@@ -1064,7 +1079,7 @@ export class PhoneNumberStatusForVirtualResponse extends $tea.Model {
|
|
|
1064
1079
|
}
|
|
1065
1080
|
}
|
|
1066
1081
|
|
|
1067
|
-
export class
|
|
1082
|
+
export class PhoneNumberEncryptRequest extends $tea.Model {
|
|
1068
1083
|
authCode?: string;
|
|
1069
1084
|
inputNumber?: string;
|
|
1070
1085
|
mask?: string;
|
|
@@ -1098,9 +1113,9 @@ export class PhoneNumberStatusForVoiceRequest extends $tea.Model {
|
|
|
1098
1113
|
}
|
|
1099
1114
|
}
|
|
1100
1115
|
|
|
1101
|
-
export class
|
|
1116
|
+
export class PhoneNumberEncryptResponseBody extends $tea.Model {
|
|
1102
1117
|
code?: string;
|
|
1103
|
-
data?:
|
|
1118
|
+
data?: PhoneNumberEncryptResponseBodyData[];
|
|
1104
1119
|
message?: string;
|
|
1105
1120
|
requestId?: string;
|
|
1106
1121
|
static names(): { [key: string]: string } {
|
|
@@ -1115,7 +1130,7 @@ export class PhoneNumberStatusForVoiceResponseBody extends $tea.Model {
|
|
|
1115
1130
|
static types(): { [key: string]: any } {
|
|
1116
1131
|
return {
|
|
1117
1132
|
code: 'string',
|
|
1118
|
-
data:
|
|
1133
|
+
data: { 'type': 'array', 'itemType': PhoneNumberEncryptResponseBodyData },
|
|
1119
1134
|
message: 'string',
|
|
1120
1135
|
requestId: 'string',
|
|
1121
1136
|
};
|
|
@@ -1126,10 +1141,10 @@ export class PhoneNumberStatusForVoiceResponseBody extends $tea.Model {
|
|
|
1126
1141
|
}
|
|
1127
1142
|
}
|
|
1128
1143
|
|
|
1129
|
-
export class
|
|
1144
|
+
export class PhoneNumberEncryptResponse extends $tea.Model {
|
|
1130
1145
|
headers: { [key: string]: string };
|
|
1131
1146
|
statusCode: number;
|
|
1132
|
-
body:
|
|
1147
|
+
body: PhoneNumberEncryptResponseBody;
|
|
1133
1148
|
static names(): { [key: string]: string } {
|
|
1134
1149
|
return {
|
|
1135
1150
|
headers: 'headers',
|
|
@@ -1142,7 +1157,7 @@ export class PhoneNumberStatusForVoiceResponse extends $tea.Model {
|
|
|
1142
1157
|
return {
|
|
1143
1158
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1144
1159
|
statusCode: 'number',
|
|
1145
|
-
body:
|
|
1160
|
+
body: PhoneNumberEncryptResponseBody,
|
|
1146
1161
|
};
|
|
1147
1162
|
}
|
|
1148
1163
|
|
|
@@ -1151,22 +1166,18 @@ export class PhoneNumberStatusForVoiceResponse extends $tea.Model {
|
|
|
1151
1166
|
}
|
|
1152
1167
|
}
|
|
1153
1168
|
|
|
1154
|
-
export class
|
|
1169
|
+
export class PhoneNumberStatusForAccountRequest extends $tea.Model {
|
|
1155
1170
|
authCode?: string;
|
|
1156
|
-
certCode?: string;
|
|
1157
1171
|
inputNumber?: string;
|
|
1158
1172
|
mask?: string;
|
|
1159
|
-
name?: string;
|
|
1160
1173
|
ownerId?: number;
|
|
1161
1174
|
resourceOwnerAccount?: string;
|
|
1162
1175
|
resourceOwnerId?: number;
|
|
1163
1176
|
static names(): { [key: string]: string } {
|
|
1164
1177
|
return {
|
|
1165
1178
|
authCode: 'AuthCode',
|
|
1166
|
-
certCode: 'CertCode',
|
|
1167
1179
|
inputNumber: 'InputNumber',
|
|
1168
1180
|
mask: 'Mask',
|
|
1169
|
-
name: 'Name',
|
|
1170
1181
|
ownerId: 'OwnerId',
|
|
1171
1182
|
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
1172
1183
|
resourceOwnerId: 'ResourceOwnerId',
|
|
@@ -1176,10 +1187,8 @@ export class ThreeElementsVerificationRequest extends $tea.Model {
|
|
|
1176
1187
|
static types(): { [key: string]: any } {
|
|
1177
1188
|
return {
|
|
1178
1189
|
authCode: 'string',
|
|
1179
|
-
certCode: 'string',
|
|
1180
1190
|
inputNumber: 'string',
|
|
1181
1191
|
mask: 'string',
|
|
1182
|
-
name: 'string',
|
|
1183
1192
|
ownerId: 'number',
|
|
1184
1193
|
resourceOwnerAccount: 'string',
|
|
1185
1194
|
resourceOwnerId: 'number',
|
|
@@ -1191,9 +1200,9 @@ export class ThreeElementsVerificationRequest extends $tea.Model {
|
|
|
1191
1200
|
}
|
|
1192
1201
|
}
|
|
1193
1202
|
|
|
1194
|
-
export class
|
|
1203
|
+
export class PhoneNumberStatusForAccountResponseBody extends $tea.Model {
|
|
1195
1204
|
code?: string;
|
|
1196
|
-
data?:
|
|
1205
|
+
data?: PhoneNumberStatusForAccountResponseBodyData;
|
|
1197
1206
|
message?: string;
|
|
1198
1207
|
requestId?: string;
|
|
1199
1208
|
static names(): { [key: string]: string } {
|
|
@@ -1208,7 +1217,7 @@ export class ThreeElementsVerificationResponseBody extends $tea.Model {
|
|
|
1208
1217
|
static types(): { [key: string]: any } {
|
|
1209
1218
|
return {
|
|
1210
1219
|
code: 'string',
|
|
1211
|
-
data:
|
|
1220
|
+
data: PhoneNumberStatusForAccountResponseBodyData,
|
|
1212
1221
|
message: 'string',
|
|
1213
1222
|
requestId: 'string',
|
|
1214
1223
|
};
|
|
@@ -1219,10 +1228,10 @@ export class ThreeElementsVerificationResponseBody extends $tea.Model {
|
|
|
1219
1228
|
}
|
|
1220
1229
|
}
|
|
1221
1230
|
|
|
1222
|
-
export class
|
|
1231
|
+
export class PhoneNumberStatusForAccountResponse extends $tea.Model {
|
|
1223
1232
|
headers: { [key: string]: string };
|
|
1224
1233
|
statusCode: number;
|
|
1225
|
-
body:
|
|
1234
|
+
body: PhoneNumberStatusForAccountResponseBody;
|
|
1226
1235
|
static names(): { [key: string]: string } {
|
|
1227
1236
|
return {
|
|
1228
1237
|
headers: 'headers',
|
|
@@ -1235,7 +1244,7 @@ export class ThreeElementsVerificationResponse extends $tea.Model {
|
|
|
1235
1244
|
return {
|
|
1236
1245
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1237
1246
|
statusCode: 'number',
|
|
1238
|
-
body:
|
|
1247
|
+
body: PhoneNumberStatusForAccountResponseBody,
|
|
1239
1248
|
};
|
|
1240
1249
|
}
|
|
1241
1250
|
|
|
@@ -1244,11 +1253,10 @@ export class ThreeElementsVerificationResponse extends $tea.Model {
|
|
|
1244
1253
|
}
|
|
1245
1254
|
}
|
|
1246
1255
|
|
|
1247
|
-
export class
|
|
1256
|
+
export class PhoneNumberStatusForPublicRequest extends $tea.Model {
|
|
1248
1257
|
authCode?: string;
|
|
1249
1258
|
inputNumber?: string;
|
|
1250
1259
|
mask?: string;
|
|
1251
|
-
name?: string;
|
|
1252
1260
|
ownerId?: number;
|
|
1253
1261
|
resourceOwnerAccount?: string;
|
|
1254
1262
|
resourceOwnerId?: number;
|
|
@@ -1257,7 +1265,6 @@ export class TwoElementsVerificationRequest extends $tea.Model {
|
|
|
1257
1265
|
authCode: 'AuthCode',
|
|
1258
1266
|
inputNumber: 'InputNumber',
|
|
1259
1267
|
mask: 'Mask',
|
|
1260
|
-
name: 'Name',
|
|
1261
1268
|
ownerId: 'OwnerId',
|
|
1262
1269
|
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
1263
1270
|
resourceOwnerId: 'ResourceOwnerId',
|
|
@@ -1269,7 +1276,6 @@ export class TwoElementsVerificationRequest extends $tea.Model {
|
|
|
1269
1276
|
authCode: 'string',
|
|
1270
1277
|
inputNumber: 'string',
|
|
1271
1278
|
mask: 'string',
|
|
1272
|
-
name: 'string',
|
|
1273
1279
|
ownerId: 'number',
|
|
1274
1280
|
resourceOwnerAccount: 'string',
|
|
1275
1281
|
resourceOwnerId: 'number',
|
|
@@ -1281,9 +1287,9 @@ export class TwoElementsVerificationRequest extends $tea.Model {
|
|
|
1281
1287
|
}
|
|
1282
1288
|
}
|
|
1283
1289
|
|
|
1284
|
-
export class
|
|
1290
|
+
export class PhoneNumberStatusForPublicResponseBody extends $tea.Model {
|
|
1285
1291
|
code?: string;
|
|
1286
|
-
data?:
|
|
1292
|
+
data?: PhoneNumberStatusForPublicResponseBodyData;
|
|
1287
1293
|
message?: string;
|
|
1288
1294
|
requestId?: string;
|
|
1289
1295
|
static names(): { [key: string]: string } {
|
|
@@ -1298,7 +1304,7 @@ export class TwoElementsVerificationResponseBody extends $tea.Model {
|
|
|
1298
1304
|
static types(): { [key: string]: any } {
|
|
1299
1305
|
return {
|
|
1300
1306
|
code: 'string',
|
|
1301
|
-
data:
|
|
1307
|
+
data: PhoneNumberStatusForPublicResponseBodyData,
|
|
1302
1308
|
message: 'string',
|
|
1303
1309
|
requestId: 'string',
|
|
1304
1310
|
};
|
|
@@ -1309,10 +1315,10 @@ export class TwoElementsVerificationResponseBody extends $tea.Model {
|
|
|
1309
1315
|
}
|
|
1310
1316
|
}
|
|
1311
1317
|
|
|
1312
|
-
export class
|
|
1318
|
+
export class PhoneNumberStatusForPublicResponse extends $tea.Model {
|
|
1313
1319
|
headers: { [key: string]: string };
|
|
1314
1320
|
statusCode: number;
|
|
1315
|
-
body:
|
|
1321
|
+
body: PhoneNumberStatusForPublicResponseBody;
|
|
1316
1322
|
static names(): { [key: string]: string } {
|
|
1317
1323
|
return {
|
|
1318
1324
|
headers: 'headers',
|
|
@@ -1325,7 +1331,7 @@ export class TwoElementsVerificationResponse extends $tea.Model {
|
|
|
1325
1331
|
return {
|
|
1326
1332
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1327
1333
|
statusCode: 'number',
|
|
1328
|
-
body:
|
|
1334
|
+
body: PhoneNumberStatusForPublicResponseBody,
|
|
1329
1335
|
};
|
|
1330
1336
|
}
|
|
1331
1337
|
|
|
@@ -1334,21 +1340,33 @@ export class TwoElementsVerificationResponse extends $tea.Model {
|
|
|
1334
1340
|
}
|
|
1335
1341
|
}
|
|
1336
1342
|
|
|
1337
|
-
export class
|
|
1338
|
-
|
|
1339
|
-
|
|
1343
|
+
export class PhoneNumberStatusForRealRequest extends $tea.Model {
|
|
1344
|
+
authCode?: string;
|
|
1345
|
+
inputNumber?: string;
|
|
1346
|
+
mask?: string;
|
|
1347
|
+
ownerId?: number;
|
|
1348
|
+
resourceOwnerAccount?: string;
|
|
1349
|
+
resourceOwnerId?: number;
|
|
1340
1350
|
static names(): { [key: string]: string } {
|
|
1341
1351
|
return {
|
|
1342
|
-
|
|
1343
|
-
|
|
1352
|
+
authCode: 'AuthCode',
|
|
1353
|
+
inputNumber: 'InputNumber',
|
|
1354
|
+
mask: 'Mask',
|
|
1355
|
+
ownerId: 'OwnerId',
|
|
1356
|
+
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
1357
|
+
resourceOwnerId: 'ResourceOwnerId',
|
|
1344
1358
|
};
|
|
1345
1359
|
}
|
|
1346
1360
|
|
|
1347
1361
|
static types(): { [key: string]: any } {
|
|
1348
1362
|
return {
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1363
|
+
authCode: 'string',
|
|
1364
|
+
inputNumber: 'string',
|
|
1365
|
+
mask: 'string',
|
|
1366
|
+
ownerId: 'number',
|
|
1367
|
+
resourceOwnerAccount: 'string',
|
|
1368
|
+
resourceOwnerId: 'number',
|
|
1369
|
+
};
|
|
1352
1370
|
}
|
|
1353
1371
|
|
|
1354
1372
|
constructor(map?: { [key: string]: any }) {
|
|
@@ -1356,20 +1374,26 @@ export class DescribeEmptyNumberResponseBodyData extends $tea.Model {
|
|
|
1356
1374
|
}
|
|
1357
1375
|
}
|
|
1358
1376
|
|
|
1359
|
-
export class
|
|
1377
|
+
export class PhoneNumberStatusForRealResponseBody extends $tea.Model {
|
|
1360
1378
|
code?: string;
|
|
1361
|
-
|
|
1379
|
+
data?: PhoneNumberStatusForRealResponseBodyData;
|
|
1380
|
+
message?: string;
|
|
1381
|
+
requestId?: string;
|
|
1362
1382
|
static names(): { [key: string]: string } {
|
|
1363
1383
|
return {
|
|
1364
1384
|
code: 'Code',
|
|
1365
|
-
|
|
1385
|
+
data: 'Data',
|
|
1386
|
+
message: 'Message',
|
|
1387
|
+
requestId: 'RequestId',
|
|
1366
1388
|
};
|
|
1367
1389
|
}
|
|
1368
1390
|
|
|
1369
1391
|
static types(): { [key: string]: any } {
|
|
1370
1392
|
return {
|
|
1371
1393
|
code: 'string',
|
|
1372
|
-
|
|
1394
|
+
data: PhoneNumberStatusForRealResponseBodyData,
|
|
1395
|
+
message: 'string',
|
|
1396
|
+
requestId: 'string',
|
|
1373
1397
|
};
|
|
1374
1398
|
}
|
|
1375
1399
|
|
|
@@ -1378,17 +1402,23 @@ export class DescribePhoneNumberAnalysisResponseBodyDataList extends $tea.Model
|
|
|
1378
1402
|
}
|
|
1379
1403
|
}
|
|
1380
1404
|
|
|
1381
|
-
export class
|
|
1382
|
-
|
|
1405
|
+
export class PhoneNumberStatusForRealResponse extends $tea.Model {
|
|
1406
|
+
headers: { [key: string]: string };
|
|
1407
|
+
statusCode: number;
|
|
1408
|
+
body: PhoneNumberStatusForRealResponseBody;
|
|
1383
1409
|
static names(): { [key: string]: string } {
|
|
1384
1410
|
return {
|
|
1385
|
-
|
|
1411
|
+
headers: 'headers',
|
|
1412
|
+
statusCode: 'statusCode',
|
|
1413
|
+
body: 'body',
|
|
1386
1414
|
};
|
|
1387
1415
|
}
|
|
1388
1416
|
|
|
1389
1417
|
static types(): { [key: string]: any } {
|
|
1390
1418
|
return {
|
|
1391
|
-
|
|
1419
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1420
|
+
statusCode: 'number',
|
|
1421
|
+
body: PhoneNumberStatusForRealResponseBody,
|
|
1392
1422
|
};
|
|
1393
1423
|
}
|
|
1394
1424
|
|
|
@@ -1397,20 +1427,32 @@ export class DescribePhoneNumberAnalysisResponseBodyData extends $tea.Model {
|
|
|
1397
1427
|
}
|
|
1398
1428
|
}
|
|
1399
1429
|
|
|
1400
|
-
export class
|
|
1401
|
-
|
|
1402
|
-
|
|
1430
|
+
export class PhoneNumberStatusForSmsRequest extends $tea.Model {
|
|
1431
|
+
authCode?: string;
|
|
1432
|
+
inputNumber?: string;
|
|
1433
|
+
mask?: string;
|
|
1434
|
+
ownerId?: number;
|
|
1435
|
+
resourceOwnerAccount?: string;
|
|
1436
|
+
resourceOwnerId?: number;
|
|
1403
1437
|
static names(): { [key: string]: string } {
|
|
1404
1438
|
return {
|
|
1405
|
-
|
|
1406
|
-
|
|
1439
|
+
authCode: 'AuthCode',
|
|
1440
|
+
inputNumber: 'InputNumber',
|
|
1441
|
+
mask: 'Mask',
|
|
1442
|
+
ownerId: 'OwnerId',
|
|
1443
|
+
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
1444
|
+
resourceOwnerId: 'ResourceOwnerId',
|
|
1407
1445
|
};
|
|
1408
1446
|
}
|
|
1409
1447
|
|
|
1410
1448
|
static types(): { [key: string]: any } {
|
|
1411
1449
|
return {
|
|
1412
|
-
|
|
1413
|
-
|
|
1450
|
+
authCode: 'string',
|
|
1451
|
+
inputNumber: 'string',
|
|
1452
|
+
mask: 'string',
|
|
1453
|
+
ownerId: 'number',
|
|
1454
|
+
resourceOwnerAccount: 'string',
|
|
1455
|
+
resourceOwnerId: 'number',
|
|
1414
1456
|
};
|
|
1415
1457
|
}
|
|
1416
1458
|
|
|
@@ -1419,32 +1461,26 @@ export class DescribePhoneNumberOnlineTimeResponseBodyData extends $tea.Model {
|
|
|
1419
1461
|
}
|
|
1420
1462
|
}
|
|
1421
1463
|
|
|
1422
|
-
export class
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
numberSegment?: number;
|
|
1428
|
-
province?: string;
|
|
1464
|
+
export class PhoneNumberStatusForSmsResponseBody extends $tea.Model {
|
|
1465
|
+
code?: string;
|
|
1466
|
+
data?: PhoneNumberStatusForSmsResponseBodyData;
|
|
1467
|
+
message?: string;
|
|
1468
|
+
requestId?: string;
|
|
1429
1469
|
static names(): { [key: string]: string } {
|
|
1430
1470
|
return {
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
numberSegment: 'NumberSegment',
|
|
1436
|
-
province: 'Province',
|
|
1471
|
+
code: 'Code',
|
|
1472
|
+
data: 'Data',
|
|
1473
|
+
message: 'Message',
|
|
1474
|
+
requestId: 'RequestId',
|
|
1437
1475
|
};
|
|
1438
1476
|
}
|
|
1439
1477
|
|
|
1440
1478
|
static types(): { [key: string]: any } {
|
|
1441
1479
|
return {
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
numberSegment: 'number',
|
|
1447
|
-
province: 'string',
|
|
1480
|
+
code: 'string',
|
|
1481
|
+
data: PhoneNumberStatusForSmsResponseBodyData,
|
|
1482
|
+
message: 'string',
|
|
1483
|
+
requestId: 'string',
|
|
1448
1484
|
};
|
|
1449
1485
|
}
|
|
1450
1486
|
|
|
@@ -1453,20 +1489,23 @@ export class DescribePhoneNumberOperatorAttributeResponseBodyData extends $tea.M
|
|
|
1453
1489
|
}
|
|
1454
1490
|
}
|
|
1455
1491
|
|
|
1456
|
-
export class
|
|
1457
|
-
|
|
1458
|
-
|
|
1492
|
+
export class PhoneNumberStatusForSmsResponse extends $tea.Model {
|
|
1493
|
+
headers: { [key: string]: string };
|
|
1494
|
+
statusCode: number;
|
|
1495
|
+
body: PhoneNumberStatusForSmsResponseBody;
|
|
1459
1496
|
static names(): { [key: string]: string } {
|
|
1460
1497
|
return {
|
|
1461
|
-
|
|
1462
|
-
|
|
1498
|
+
headers: 'headers',
|
|
1499
|
+
statusCode: 'statusCode',
|
|
1500
|
+
body: 'body',
|
|
1463
1501
|
};
|
|
1464
1502
|
}
|
|
1465
1503
|
|
|
1466
1504
|
static types(): { [key: string]: any } {
|
|
1467
1505
|
return {
|
|
1468
|
-
|
|
1469
|
-
|
|
1506
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1507
|
+
statusCode: 'number',
|
|
1508
|
+
body: PhoneNumberStatusForSmsResponseBody,
|
|
1470
1509
|
};
|
|
1471
1510
|
}
|
|
1472
1511
|
|
|
@@ -1475,26 +1514,32 @@ export class DescribePhoneTwiceTelVerifyResponseBodyData extends $tea.Model {
|
|
|
1475
1514
|
}
|
|
1476
1515
|
}
|
|
1477
1516
|
|
|
1478
|
-
export class
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1517
|
+
export class PhoneNumberStatusForVirtualRequest extends $tea.Model {
|
|
1518
|
+
authCode?: string;
|
|
1519
|
+
inputNumber?: string;
|
|
1520
|
+
mask?: string;
|
|
1521
|
+
ownerId?: number;
|
|
1522
|
+
resourceOwnerAccount?: string;
|
|
1523
|
+
resourceOwnerId?: number;
|
|
1483
1524
|
static names(): { [key: string]: string } {
|
|
1484
1525
|
return {
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1526
|
+
authCode: 'AuthCode',
|
|
1527
|
+
inputNumber: 'InputNumber',
|
|
1528
|
+
mask: 'Mask',
|
|
1529
|
+
ownerId: 'OwnerId',
|
|
1530
|
+
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
1531
|
+
resourceOwnerId: 'ResourceOwnerId',
|
|
1489
1532
|
};
|
|
1490
1533
|
}
|
|
1491
1534
|
|
|
1492
1535
|
static types(): { [key: string]: any } {
|
|
1493
1536
|
return {
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
|
|
1537
|
+
authCode: 'string',
|
|
1538
|
+
inputNumber: 'string',
|
|
1539
|
+
mask: 'string',
|
|
1540
|
+
ownerId: 'number',
|
|
1541
|
+
resourceOwnerAccount: 'string',
|
|
1542
|
+
resourceOwnerId: 'number',
|
|
1498
1543
|
};
|
|
1499
1544
|
}
|
|
1500
1545
|
|
|
@@ -1503,23 +1548,26 @@ export class InvalidPhoneNumberFilterResponseBodyData extends $tea.Model {
|
|
|
1503
1548
|
}
|
|
1504
1549
|
}
|
|
1505
1550
|
|
|
1506
|
-
export class
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1551
|
+
export class PhoneNumberStatusForVirtualResponseBody extends $tea.Model {
|
|
1552
|
+
code?: string;
|
|
1553
|
+
data?: PhoneNumberStatusForVirtualResponseBodyData;
|
|
1554
|
+
message?: string;
|
|
1555
|
+
requestId?: string;
|
|
1510
1556
|
static names(): { [key: string]: string } {
|
|
1511
1557
|
return {
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1558
|
+
code: 'Code',
|
|
1559
|
+
data: 'Data',
|
|
1560
|
+
message: 'Message',
|
|
1561
|
+
requestId: 'RequestId',
|
|
1515
1562
|
};
|
|
1516
1563
|
}
|
|
1517
1564
|
|
|
1518
1565
|
static types(): { [key: string]: any } {
|
|
1519
1566
|
return {
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1567
|
+
code: 'string',
|
|
1568
|
+
data: PhoneNumberStatusForVirtualResponseBodyData,
|
|
1569
|
+
message: 'string',
|
|
1570
|
+
requestId: 'string',
|
|
1523
1571
|
};
|
|
1524
1572
|
}
|
|
1525
1573
|
|
|
@@ -1528,20 +1576,23 @@ export class PhoneNumberEncryptResponseBodyData extends $tea.Model {
|
|
|
1528
1576
|
}
|
|
1529
1577
|
}
|
|
1530
1578
|
|
|
1531
|
-
export class
|
|
1532
|
-
|
|
1533
|
-
|
|
1579
|
+
export class PhoneNumberStatusForVirtualResponse extends $tea.Model {
|
|
1580
|
+
headers: { [key: string]: string };
|
|
1581
|
+
statusCode: number;
|
|
1582
|
+
body: PhoneNumberStatusForVirtualResponseBody;
|
|
1534
1583
|
static names(): { [key: string]: string } {
|
|
1535
1584
|
return {
|
|
1536
|
-
|
|
1537
|
-
|
|
1585
|
+
headers: 'headers',
|
|
1586
|
+
statusCode: 'statusCode',
|
|
1587
|
+
body: 'body',
|
|
1538
1588
|
};
|
|
1539
1589
|
}
|
|
1540
1590
|
|
|
1541
1591
|
static types(): { [key: string]: any } {
|
|
1542
1592
|
return {
|
|
1543
|
-
|
|
1544
|
-
|
|
1593
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1594
|
+
statusCode: 'number',
|
|
1595
|
+
body: PhoneNumberStatusForVirtualResponseBody,
|
|
1545
1596
|
};
|
|
1546
1597
|
}
|
|
1547
1598
|
|
|
@@ -1550,20 +1601,32 @@ export class PhoneNumberStatusForAccountResponseBodyData extends $tea.Model {
|
|
|
1550
1601
|
}
|
|
1551
1602
|
}
|
|
1552
1603
|
|
|
1553
|
-
export class
|
|
1554
|
-
|
|
1555
|
-
|
|
1604
|
+
export class PhoneNumberStatusForVoiceRequest extends $tea.Model {
|
|
1605
|
+
authCode?: string;
|
|
1606
|
+
inputNumber?: string;
|
|
1607
|
+
mask?: string;
|
|
1608
|
+
ownerId?: number;
|
|
1609
|
+
resourceOwnerAccount?: string;
|
|
1610
|
+
resourceOwnerId?: number;
|
|
1556
1611
|
static names(): { [key: string]: string } {
|
|
1557
1612
|
return {
|
|
1558
|
-
|
|
1559
|
-
|
|
1613
|
+
authCode: 'AuthCode',
|
|
1614
|
+
inputNumber: 'InputNumber',
|
|
1615
|
+
mask: 'Mask',
|
|
1616
|
+
ownerId: 'OwnerId',
|
|
1617
|
+
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
1618
|
+
resourceOwnerId: 'ResourceOwnerId',
|
|
1560
1619
|
};
|
|
1561
1620
|
}
|
|
1562
1621
|
|
|
1563
1622
|
static types(): { [key: string]: any } {
|
|
1564
1623
|
return {
|
|
1565
|
-
|
|
1566
|
-
|
|
1624
|
+
authCode: 'string',
|
|
1625
|
+
inputNumber: 'string',
|
|
1626
|
+
mask: 'string',
|
|
1627
|
+
ownerId: 'number',
|
|
1628
|
+
resourceOwnerAccount: 'string',
|
|
1629
|
+
resourceOwnerId: 'number',
|
|
1567
1630
|
};
|
|
1568
1631
|
}
|
|
1569
1632
|
|
|
@@ -1572,20 +1635,26 @@ export class PhoneNumberStatusForPublicResponseBodyData extends $tea.Model {
|
|
|
1572
1635
|
}
|
|
1573
1636
|
}
|
|
1574
1637
|
|
|
1575
|
-
export class
|
|
1576
|
-
|
|
1577
|
-
|
|
1638
|
+
export class PhoneNumberStatusForVoiceResponseBody extends $tea.Model {
|
|
1639
|
+
code?: string;
|
|
1640
|
+
data?: PhoneNumberStatusForVoiceResponseBodyData;
|
|
1641
|
+
message?: string;
|
|
1642
|
+
requestId?: string;
|
|
1578
1643
|
static names(): { [key: string]: string } {
|
|
1579
1644
|
return {
|
|
1580
|
-
|
|
1581
|
-
|
|
1645
|
+
code: 'Code',
|
|
1646
|
+
data: 'Data',
|
|
1647
|
+
message: 'Message',
|
|
1648
|
+
requestId: 'RequestId',
|
|
1582
1649
|
};
|
|
1583
1650
|
}
|
|
1584
1651
|
|
|
1585
1652
|
static types(): { [key: string]: any } {
|
|
1586
1653
|
return {
|
|
1587
|
-
|
|
1588
|
-
|
|
1654
|
+
code: 'string',
|
|
1655
|
+
data: PhoneNumberStatusForVoiceResponseBodyData,
|
|
1656
|
+
message: 'string',
|
|
1657
|
+
requestId: 'string',
|
|
1589
1658
|
};
|
|
1590
1659
|
}
|
|
1591
1660
|
|
|
@@ -1594,20 +1663,23 @@ export class PhoneNumberStatusForRealResponseBodyData extends $tea.Model {
|
|
|
1594
1663
|
}
|
|
1595
1664
|
}
|
|
1596
1665
|
|
|
1597
|
-
export class
|
|
1598
|
-
|
|
1599
|
-
|
|
1666
|
+
export class PhoneNumberStatusForVoiceResponse extends $tea.Model {
|
|
1667
|
+
headers: { [key: string]: string };
|
|
1668
|
+
statusCode: number;
|
|
1669
|
+
body: PhoneNumberStatusForVoiceResponseBody;
|
|
1600
1670
|
static names(): { [key: string]: string } {
|
|
1601
1671
|
return {
|
|
1602
|
-
|
|
1603
|
-
|
|
1672
|
+
headers: 'headers',
|
|
1673
|
+
statusCode: 'statusCode',
|
|
1674
|
+
body: 'body',
|
|
1604
1675
|
};
|
|
1605
1676
|
}
|
|
1606
1677
|
|
|
1607
1678
|
static types(): { [key: string]: any } {
|
|
1608
1679
|
return {
|
|
1609
|
-
|
|
1610
|
-
|
|
1680
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1681
|
+
statusCode: 'number',
|
|
1682
|
+
body: PhoneNumberStatusForVoiceResponseBody,
|
|
1611
1683
|
};
|
|
1612
1684
|
}
|
|
1613
1685
|
|
|
@@ -1616,18 +1688,1299 @@ export class PhoneNumberStatusForSmsResponseBodyData extends $tea.Model {
|
|
|
1616
1688
|
}
|
|
1617
1689
|
}
|
|
1618
1690
|
|
|
1619
|
-
export class
|
|
1620
|
-
|
|
1691
|
+
export class QueryAvailableAuthCodeRequest extends $tea.Model {
|
|
1692
|
+
ownerId?: number;
|
|
1693
|
+
resourceOwnerAccount?: string;
|
|
1694
|
+
resourceOwnerId?: number;
|
|
1695
|
+
tagId?: number;
|
|
1621
1696
|
static names(): { [key: string]: string } {
|
|
1622
1697
|
return {
|
|
1623
|
-
|
|
1698
|
+
ownerId: 'OwnerId',
|
|
1699
|
+
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
1700
|
+
resourceOwnerId: 'ResourceOwnerId',
|
|
1701
|
+
tagId: 'TagId',
|
|
1624
1702
|
};
|
|
1625
1703
|
}
|
|
1626
1704
|
|
|
1627
1705
|
static types(): { [key: string]: any } {
|
|
1628
1706
|
return {
|
|
1629
|
-
|
|
1630
|
-
|
|
1707
|
+
ownerId: 'number',
|
|
1708
|
+
resourceOwnerAccount: 'string',
|
|
1709
|
+
resourceOwnerId: 'number',
|
|
1710
|
+
tagId: 'number',
|
|
1711
|
+
};
|
|
1712
|
+
}
|
|
1713
|
+
|
|
1714
|
+
constructor(map?: { [key: string]: any }) {
|
|
1715
|
+
super(map);
|
|
1716
|
+
}
|
|
1717
|
+
}
|
|
1718
|
+
|
|
1719
|
+
export class QueryAvailableAuthCodeResponseBody extends $tea.Model {
|
|
1720
|
+
code?: string;
|
|
1721
|
+
data?: string[];
|
|
1722
|
+
message?: string;
|
|
1723
|
+
requestId?: string;
|
|
1724
|
+
success?: boolean;
|
|
1725
|
+
static names(): { [key: string]: string } {
|
|
1726
|
+
return {
|
|
1727
|
+
code: 'Code',
|
|
1728
|
+
data: 'Data',
|
|
1729
|
+
message: 'Message',
|
|
1730
|
+
requestId: 'RequestId',
|
|
1731
|
+
success: 'Success',
|
|
1732
|
+
};
|
|
1733
|
+
}
|
|
1734
|
+
|
|
1735
|
+
static types(): { [key: string]: any } {
|
|
1736
|
+
return {
|
|
1737
|
+
code: 'string',
|
|
1738
|
+
data: { 'type': 'array', 'itemType': 'string' },
|
|
1739
|
+
message: 'string',
|
|
1740
|
+
requestId: 'string',
|
|
1741
|
+
success: 'boolean',
|
|
1742
|
+
};
|
|
1743
|
+
}
|
|
1744
|
+
|
|
1745
|
+
constructor(map?: { [key: string]: any }) {
|
|
1746
|
+
super(map);
|
|
1747
|
+
}
|
|
1748
|
+
}
|
|
1749
|
+
|
|
1750
|
+
export class QueryAvailableAuthCodeResponse extends $tea.Model {
|
|
1751
|
+
headers: { [key: string]: string };
|
|
1752
|
+
statusCode: number;
|
|
1753
|
+
body: QueryAvailableAuthCodeResponseBody;
|
|
1754
|
+
static names(): { [key: string]: string } {
|
|
1755
|
+
return {
|
|
1756
|
+
headers: 'headers',
|
|
1757
|
+
statusCode: 'statusCode',
|
|
1758
|
+
body: 'body',
|
|
1759
|
+
};
|
|
1760
|
+
}
|
|
1761
|
+
|
|
1762
|
+
static types(): { [key: string]: any } {
|
|
1763
|
+
return {
|
|
1764
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1765
|
+
statusCode: 'number',
|
|
1766
|
+
body: QueryAvailableAuthCodeResponseBody,
|
|
1767
|
+
};
|
|
1768
|
+
}
|
|
1769
|
+
|
|
1770
|
+
constructor(map?: { [key: string]: any }) {
|
|
1771
|
+
super(map);
|
|
1772
|
+
}
|
|
1773
|
+
}
|
|
1774
|
+
|
|
1775
|
+
export class QueryTagApplyRuleRequest extends $tea.Model {
|
|
1776
|
+
ownerId?: number;
|
|
1777
|
+
resourceOwnerAccount?: string;
|
|
1778
|
+
resourceOwnerId?: number;
|
|
1779
|
+
tagId?: number;
|
|
1780
|
+
static names(): { [key: string]: string } {
|
|
1781
|
+
return {
|
|
1782
|
+
ownerId: 'OwnerId',
|
|
1783
|
+
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
1784
|
+
resourceOwnerId: 'ResourceOwnerId',
|
|
1785
|
+
tagId: 'TagId',
|
|
1786
|
+
};
|
|
1787
|
+
}
|
|
1788
|
+
|
|
1789
|
+
static types(): { [key: string]: any } {
|
|
1790
|
+
return {
|
|
1791
|
+
ownerId: 'number',
|
|
1792
|
+
resourceOwnerAccount: 'string',
|
|
1793
|
+
resourceOwnerId: 'number',
|
|
1794
|
+
tagId: 'number',
|
|
1795
|
+
};
|
|
1796
|
+
}
|
|
1797
|
+
|
|
1798
|
+
constructor(map?: { [key: string]: any }) {
|
|
1799
|
+
super(map);
|
|
1800
|
+
}
|
|
1801
|
+
}
|
|
1802
|
+
|
|
1803
|
+
export class QueryTagApplyRuleResponseBody extends $tea.Model {
|
|
1804
|
+
code?: string;
|
|
1805
|
+
data?: QueryTagApplyRuleResponseBodyData;
|
|
1806
|
+
message?: string;
|
|
1807
|
+
requestId?: string;
|
|
1808
|
+
success?: boolean;
|
|
1809
|
+
static names(): { [key: string]: string } {
|
|
1810
|
+
return {
|
|
1811
|
+
code: 'Code',
|
|
1812
|
+
data: 'Data',
|
|
1813
|
+
message: 'Message',
|
|
1814
|
+
requestId: 'RequestId',
|
|
1815
|
+
success: 'Success',
|
|
1816
|
+
};
|
|
1817
|
+
}
|
|
1818
|
+
|
|
1819
|
+
static types(): { [key: string]: any } {
|
|
1820
|
+
return {
|
|
1821
|
+
code: 'string',
|
|
1822
|
+
data: QueryTagApplyRuleResponseBodyData,
|
|
1823
|
+
message: 'string',
|
|
1824
|
+
requestId: 'string',
|
|
1825
|
+
success: 'boolean',
|
|
1826
|
+
};
|
|
1827
|
+
}
|
|
1828
|
+
|
|
1829
|
+
constructor(map?: { [key: string]: any }) {
|
|
1830
|
+
super(map);
|
|
1831
|
+
}
|
|
1832
|
+
}
|
|
1833
|
+
|
|
1834
|
+
export class QueryTagApplyRuleResponse extends $tea.Model {
|
|
1835
|
+
headers: { [key: string]: string };
|
|
1836
|
+
statusCode: number;
|
|
1837
|
+
body: QueryTagApplyRuleResponseBody;
|
|
1838
|
+
static names(): { [key: string]: string } {
|
|
1839
|
+
return {
|
|
1840
|
+
headers: 'headers',
|
|
1841
|
+
statusCode: 'statusCode',
|
|
1842
|
+
body: 'body',
|
|
1843
|
+
};
|
|
1844
|
+
}
|
|
1845
|
+
|
|
1846
|
+
static types(): { [key: string]: any } {
|
|
1847
|
+
return {
|
|
1848
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1849
|
+
statusCode: 'number',
|
|
1850
|
+
body: QueryTagApplyRuleResponseBody,
|
|
1851
|
+
};
|
|
1852
|
+
}
|
|
1853
|
+
|
|
1854
|
+
constructor(map?: { [key: string]: any }) {
|
|
1855
|
+
super(map);
|
|
1856
|
+
}
|
|
1857
|
+
}
|
|
1858
|
+
|
|
1859
|
+
export class QueryTagInfoBySelectionRequest extends $tea.Model {
|
|
1860
|
+
industryId?: number;
|
|
1861
|
+
ownerId?: number;
|
|
1862
|
+
resourceOwnerAccount?: string;
|
|
1863
|
+
resourceOwnerId?: number;
|
|
1864
|
+
sceneId?: number;
|
|
1865
|
+
tagId?: number;
|
|
1866
|
+
static names(): { [key: string]: string } {
|
|
1867
|
+
return {
|
|
1868
|
+
industryId: 'IndustryId',
|
|
1869
|
+
ownerId: 'OwnerId',
|
|
1870
|
+
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
1871
|
+
resourceOwnerId: 'ResourceOwnerId',
|
|
1872
|
+
sceneId: 'SceneId',
|
|
1873
|
+
tagId: 'TagId',
|
|
1874
|
+
};
|
|
1875
|
+
}
|
|
1876
|
+
|
|
1877
|
+
static types(): { [key: string]: any } {
|
|
1878
|
+
return {
|
|
1879
|
+
industryId: 'number',
|
|
1880
|
+
ownerId: 'number',
|
|
1881
|
+
resourceOwnerAccount: 'string',
|
|
1882
|
+
resourceOwnerId: 'number',
|
|
1883
|
+
sceneId: 'number',
|
|
1884
|
+
tagId: 'number',
|
|
1885
|
+
};
|
|
1886
|
+
}
|
|
1887
|
+
|
|
1888
|
+
constructor(map?: { [key: string]: any }) {
|
|
1889
|
+
super(map);
|
|
1890
|
+
}
|
|
1891
|
+
}
|
|
1892
|
+
|
|
1893
|
+
export class QueryTagInfoBySelectionResponseBody extends $tea.Model {
|
|
1894
|
+
code?: string;
|
|
1895
|
+
data?: QueryTagInfoBySelectionResponseBodyData[];
|
|
1896
|
+
message?: string;
|
|
1897
|
+
requestId?: string;
|
|
1898
|
+
success?: boolean;
|
|
1899
|
+
static names(): { [key: string]: string } {
|
|
1900
|
+
return {
|
|
1901
|
+
code: 'Code',
|
|
1902
|
+
data: 'Data',
|
|
1903
|
+
message: 'Message',
|
|
1904
|
+
requestId: 'RequestId',
|
|
1905
|
+
success: 'Success',
|
|
1906
|
+
};
|
|
1907
|
+
}
|
|
1908
|
+
|
|
1909
|
+
static types(): { [key: string]: any } {
|
|
1910
|
+
return {
|
|
1911
|
+
code: 'string',
|
|
1912
|
+
data: { 'type': 'array', 'itemType': QueryTagInfoBySelectionResponseBodyData },
|
|
1913
|
+
message: 'string',
|
|
1914
|
+
requestId: 'string',
|
|
1915
|
+
success: 'boolean',
|
|
1916
|
+
};
|
|
1917
|
+
}
|
|
1918
|
+
|
|
1919
|
+
constructor(map?: { [key: string]: any }) {
|
|
1920
|
+
super(map);
|
|
1921
|
+
}
|
|
1922
|
+
}
|
|
1923
|
+
|
|
1924
|
+
export class QueryTagInfoBySelectionResponse extends $tea.Model {
|
|
1925
|
+
headers: { [key: string]: string };
|
|
1926
|
+
statusCode: number;
|
|
1927
|
+
body: QueryTagInfoBySelectionResponseBody;
|
|
1928
|
+
static names(): { [key: string]: string } {
|
|
1929
|
+
return {
|
|
1930
|
+
headers: 'headers',
|
|
1931
|
+
statusCode: 'statusCode',
|
|
1932
|
+
body: 'body',
|
|
1933
|
+
};
|
|
1934
|
+
}
|
|
1935
|
+
|
|
1936
|
+
static types(): { [key: string]: any } {
|
|
1937
|
+
return {
|
|
1938
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1939
|
+
statusCode: 'number',
|
|
1940
|
+
body: QueryTagInfoBySelectionResponseBody,
|
|
1941
|
+
};
|
|
1942
|
+
}
|
|
1943
|
+
|
|
1944
|
+
constructor(map?: { [key: string]: any }) {
|
|
1945
|
+
super(map);
|
|
1946
|
+
}
|
|
1947
|
+
}
|
|
1948
|
+
|
|
1949
|
+
export class QueryTagListPageRequest extends $tea.Model {
|
|
1950
|
+
ownerId?: number;
|
|
1951
|
+
pageNo?: number;
|
|
1952
|
+
pageSize?: number;
|
|
1953
|
+
resourceOwnerAccount?: string;
|
|
1954
|
+
resourceOwnerId?: number;
|
|
1955
|
+
static names(): { [key: string]: string } {
|
|
1956
|
+
return {
|
|
1957
|
+
ownerId: 'OwnerId',
|
|
1958
|
+
pageNo: 'PageNo',
|
|
1959
|
+
pageSize: 'PageSize',
|
|
1960
|
+
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
1961
|
+
resourceOwnerId: 'ResourceOwnerId',
|
|
1962
|
+
};
|
|
1963
|
+
}
|
|
1964
|
+
|
|
1965
|
+
static types(): { [key: string]: any } {
|
|
1966
|
+
return {
|
|
1967
|
+
ownerId: 'number',
|
|
1968
|
+
pageNo: 'number',
|
|
1969
|
+
pageSize: 'number',
|
|
1970
|
+
resourceOwnerAccount: 'string',
|
|
1971
|
+
resourceOwnerId: 'number',
|
|
1972
|
+
};
|
|
1973
|
+
}
|
|
1974
|
+
|
|
1975
|
+
constructor(map?: { [key: string]: any }) {
|
|
1976
|
+
super(map);
|
|
1977
|
+
}
|
|
1978
|
+
}
|
|
1979
|
+
|
|
1980
|
+
export class QueryTagListPageResponseBody extends $tea.Model {
|
|
1981
|
+
code?: string;
|
|
1982
|
+
data?: QueryTagListPageResponseBodyData;
|
|
1983
|
+
message?: string;
|
|
1984
|
+
requestId?: string;
|
|
1985
|
+
success?: boolean;
|
|
1986
|
+
static names(): { [key: string]: string } {
|
|
1987
|
+
return {
|
|
1988
|
+
code: 'Code',
|
|
1989
|
+
data: 'Data',
|
|
1990
|
+
message: 'Message',
|
|
1991
|
+
requestId: 'RequestId',
|
|
1992
|
+
success: 'Success',
|
|
1993
|
+
};
|
|
1994
|
+
}
|
|
1995
|
+
|
|
1996
|
+
static types(): { [key: string]: any } {
|
|
1997
|
+
return {
|
|
1998
|
+
code: 'string',
|
|
1999
|
+
data: QueryTagListPageResponseBodyData,
|
|
2000
|
+
message: 'string',
|
|
2001
|
+
requestId: 'string',
|
|
2002
|
+
success: 'boolean',
|
|
2003
|
+
};
|
|
2004
|
+
}
|
|
2005
|
+
|
|
2006
|
+
constructor(map?: { [key: string]: any }) {
|
|
2007
|
+
super(map);
|
|
2008
|
+
}
|
|
2009
|
+
}
|
|
2010
|
+
|
|
2011
|
+
export class QueryTagListPageResponse extends $tea.Model {
|
|
2012
|
+
headers: { [key: string]: string };
|
|
2013
|
+
statusCode: number;
|
|
2014
|
+
body: QueryTagListPageResponseBody;
|
|
2015
|
+
static names(): { [key: string]: string } {
|
|
2016
|
+
return {
|
|
2017
|
+
headers: 'headers',
|
|
2018
|
+
statusCode: 'statusCode',
|
|
2019
|
+
body: 'body',
|
|
2020
|
+
};
|
|
2021
|
+
}
|
|
2022
|
+
|
|
2023
|
+
static types(): { [key: string]: any } {
|
|
2024
|
+
return {
|
|
2025
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2026
|
+
statusCode: 'number',
|
|
2027
|
+
body: QueryTagListPageResponseBody,
|
|
2028
|
+
};
|
|
2029
|
+
}
|
|
2030
|
+
|
|
2031
|
+
constructor(map?: { [key: string]: any }) {
|
|
2032
|
+
super(map);
|
|
2033
|
+
}
|
|
2034
|
+
}
|
|
2035
|
+
|
|
2036
|
+
export class QueryUsageStatisticsByTagIdRequest extends $tea.Model {
|
|
2037
|
+
beginTime?: string;
|
|
2038
|
+
endTime?: string;
|
|
2039
|
+
ownerId?: number;
|
|
2040
|
+
pageNo?: number;
|
|
2041
|
+
pageSize?: number;
|
|
2042
|
+
resourceOwnerAccount?: string;
|
|
2043
|
+
resourceOwnerId?: number;
|
|
2044
|
+
tagId?: number;
|
|
2045
|
+
static names(): { [key: string]: string } {
|
|
2046
|
+
return {
|
|
2047
|
+
beginTime: 'BeginTime',
|
|
2048
|
+
endTime: 'EndTime',
|
|
2049
|
+
ownerId: 'OwnerId',
|
|
2050
|
+
pageNo: 'PageNo',
|
|
2051
|
+
pageSize: 'PageSize',
|
|
2052
|
+
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
2053
|
+
resourceOwnerId: 'ResourceOwnerId',
|
|
2054
|
+
tagId: 'TagId',
|
|
2055
|
+
};
|
|
2056
|
+
}
|
|
2057
|
+
|
|
2058
|
+
static types(): { [key: string]: any } {
|
|
2059
|
+
return {
|
|
2060
|
+
beginTime: 'string',
|
|
2061
|
+
endTime: 'string',
|
|
2062
|
+
ownerId: 'number',
|
|
2063
|
+
pageNo: 'number',
|
|
2064
|
+
pageSize: 'number',
|
|
2065
|
+
resourceOwnerAccount: 'string',
|
|
2066
|
+
resourceOwnerId: 'number',
|
|
2067
|
+
tagId: 'number',
|
|
2068
|
+
};
|
|
2069
|
+
}
|
|
2070
|
+
|
|
2071
|
+
constructor(map?: { [key: string]: any }) {
|
|
2072
|
+
super(map);
|
|
2073
|
+
}
|
|
2074
|
+
}
|
|
2075
|
+
|
|
2076
|
+
export class QueryUsageStatisticsByTagIdResponseBody extends $tea.Model {
|
|
2077
|
+
code?: string;
|
|
2078
|
+
data?: QueryUsageStatisticsByTagIdResponseBodyData[];
|
|
2079
|
+
message?: string;
|
|
2080
|
+
requestId?: string;
|
|
2081
|
+
success?: boolean;
|
|
2082
|
+
static names(): { [key: string]: string } {
|
|
2083
|
+
return {
|
|
2084
|
+
code: 'Code',
|
|
2085
|
+
data: 'Data',
|
|
2086
|
+
message: 'Message',
|
|
2087
|
+
requestId: 'RequestId',
|
|
2088
|
+
success: 'Success',
|
|
2089
|
+
};
|
|
2090
|
+
}
|
|
2091
|
+
|
|
2092
|
+
static types(): { [key: string]: any } {
|
|
2093
|
+
return {
|
|
2094
|
+
code: 'string',
|
|
2095
|
+
data: { 'type': 'array', 'itemType': QueryUsageStatisticsByTagIdResponseBodyData },
|
|
2096
|
+
message: 'string',
|
|
2097
|
+
requestId: 'string',
|
|
2098
|
+
success: 'boolean',
|
|
2099
|
+
};
|
|
2100
|
+
}
|
|
2101
|
+
|
|
2102
|
+
constructor(map?: { [key: string]: any }) {
|
|
2103
|
+
super(map);
|
|
2104
|
+
}
|
|
2105
|
+
}
|
|
2106
|
+
|
|
2107
|
+
export class QueryUsageStatisticsByTagIdResponse extends $tea.Model {
|
|
2108
|
+
headers: { [key: string]: string };
|
|
2109
|
+
statusCode: number;
|
|
2110
|
+
body: QueryUsageStatisticsByTagIdResponseBody;
|
|
2111
|
+
static names(): { [key: string]: string } {
|
|
2112
|
+
return {
|
|
2113
|
+
headers: 'headers',
|
|
2114
|
+
statusCode: 'statusCode',
|
|
2115
|
+
body: 'body',
|
|
2116
|
+
};
|
|
2117
|
+
}
|
|
2118
|
+
|
|
2119
|
+
static types(): { [key: string]: any } {
|
|
2120
|
+
return {
|
|
2121
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2122
|
+
statusCode: 'number',
|
|
2123
|
+
body: QueryUsageStatisticsByTagIdResponseBody,
|
|
2124
|
+
};
|
|
2125
|
+
}
|
|
2126
|
+
|
|
2127
|
+
constructor(map?: { [key: string]: any }) {
|
|
2128
|
+
super(map);
|
|
2129
|
+
}
|
|
2130
|
+
}
|
|
2131
|
+
|
|
2132
|
+
export class ThreeElementsVerificationRequest extends $tea.Model {
|
|
2133
|
+
authCode?: string;
|
|
2134
|
+
certCode?: string;
|
|
2135
|
+
inputNumber?: string;
|
|
2136
|
+
mask?: string;
|
|
2137
|
+
name?: string;
|
|
2138
|
+
ownerId?: number;
|
|
2139
|
+
resourceOwnerAccount?: string;
|
|
2140
|
+
resourceOwnerId?: number;
|
|
2141
|
+
static names(): { [key: string]: string } {
|
|
2142
|
+
return {
|
|
2143
|
+
authCode: 'AuthCode',
|
|
2144
|
+
certCode: 'CertCode',
|
|
2145
|
+
inputNumber: 'InputNumber',
|
|
2146
|
+
mask: 'Mask',
|
|
2147
|
+
name: 'Name',
|
|
2148
|
+
ownerId: 'OwnerId',
|
|
2149
|
+
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
2150
|
+
resourceOwnerId: 'ResourceOwnerId',
|
|
2151
|
+
};
|
|
2152
|
+
}
|
|
2153
|
+
|
|
2154
|
+
static types(): { [key: string]: any } {
|
|
2155
|
+
return {
|
|
2156
|
+
authCode: 'string',
|
|
2157
|
+
certCode: 'string',
|
|
2158
|
+
inputNumber: 'string',
|
|
2159
|
+
mask: 'string',
|
|
2160
|
+
name: 'string',
|
|
2161
|
+
ownerId: 'number',
|
|
2162
|
+
resourceOwnerAccount: 'string',
|
|
2163
|
+
resourceOwnerId: 'number',
|
|
2164
|
+
};
|
|
2165
|
+
}
|
|
2166
|
+
|
|
2167
|
+
constructor(map?: { [key: string]: any }) {
|
|
2168
|
+
super(map);
|
|
2169
|
+
}
|
|
2170
|
+
}
|
|
2171
|
+
|
|
2172
|
+
export class ThreeElementsVerificationResponseBody extends $tea.Model {
|
|
2173
|
+
code?: string;
|
|
2174
|
+
data?: ThreeElementsVerificationResponseBodyData;
|
|
2175
|
+
message?: string;
|
|
2176
|
+
requestId?: string;
|
|
2177
|
+
static names(): { [key: string]: string } {
|
|
2178
|
+
return {
|
|
2179
|
+
code: 'Code',
|
|
2180
|
+
data: 'Data',
|
|
2181
|
+
message: 'Message',
|
|
2182
|
+
requestId: 'RequestId',
|
|
2183
|
+
};
|
|
2184
|
+
}
|
|
2185
|
+
|
|
2186
|
+
static types(): { [key: string]: any } {
|
|
2187
|
+
return {
|
|
2188
|
+
code: 'string',
|
|
2189
|
+
data: ThreeElementsVerificationResponseBodyData,
|
|
2190
|
+
message: 'string',
|
|
2191
|
+
requestId: 'string',
|
|
2192
|
+
};
|
|
2193
|
+
}
|
|
2194
|
+
|
|
2195
|
+
constructor(map?: { [key: string]: any }) {
|
|
2196
|
+
super(map);
|
|
2197
|
+
}
|
|
2198
|
+
}
|
|
2199
|
+
|
|
2200
|
+
export class ThreeElementsVerificationResponse extends $tea.Model {
|
|
2201
|
+
headers: { [key: string]: string };
|
|
2202
|
+
statusCode: number;
|
|
2203
|
+
body: ThreeElementsVerificationResponseBody;
|
|
2204
|
+
static names(): { [key: string]: string } {
|
|
2205
|
+
return {
|
|
2206
|
+
headers: 'headers',
|
|
2207
|
+
statusCode: 'statusCode',
|
|
2208
|
+
body: 'body',
|
|
2209
|
+
};
|
|
2210
|
+
}
|
|
2211
|
+
|
|
2212
|
+
static types(): { [key: string]: any } {
|
|
2213
|
+
return {
|
|
2214
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2215
|
+
statusCode: 'number',
|
|
2216
|
+
body: ThreeElementsVerificationResponseBody,
|
|
2217
|
+
};
|
|
2218
|
+
}
|
|
2219
|
+
|
|
2220
|
+
constructor(map?: { [key: string]: any }) {
|
|
2221
|
+
super(map);
|
|
2222
|
+
}
|
|
2223
|
+
}
|
|
2224
|
+
|
|
2225
|
+
export class TwoElementsVerificationRequest extends $tea.Model {
|
|
2226
|
+
authCode?: string;
|
|
2227
|
+
inputNumber?: string;
|
|
2228
|
+
mask?: string;
|
|
2229
|
+
name?: string;
|
|
2230
|
+
ownerId?: number;
|
|
2231
|
+
resourceOwnerAccount?: string;
|
|
2232
|
+
resourceOwnerId?: number;
|
|
2233
|
+
static names(): { [key: string]: string } {
|
|
2234
|
+
return {
|
|
2235
|
+
authCode: 'AuthCode',
|
|
2236
|
+
inputNumber: 'InputNumber',
|
|
2237
|
+
mask: 'Mask',
|
|
2238
|
+
name: 'Name',
|
|
2239
|
+
ownerId: 'OwnerId',
|
|
2240
|
+
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
2241
|
+
resourceOwnerId: 'ResourceOwnerId',
|
|
2242
|
+
};
|
|
2243
|
+
}
|
|
2244
|
+
|
|
2245
|
+
static types(): { [key: string]: any } {
|
|
2246
|
+
return {
|
|
2247
|
+
authCode: 'string',
|
|
2248
|
+
inputNumber: 'string',
|
|
2249
|
+
mask: 'string',
|
|
2250
|
+
name: 'string',
|
|
2251
|
+
ownerId: 'number',
|
|
2252
|
+
resourceOwnerAccount: 'string',
|
|
2253
|
+
resourceOwnerId: 'number',
|
|
2254
|
+
};
|
|
2255
|
+
}
|
|
2256
|
+
|
|
2257
|
+
constructor(map?: { [key: string]: any }) {
|
|
2258
|
+
super(map);
|
|
2259
|
+
}
|
|
2260
|
+
}
|
|
2261
|
+
|
|
2262
|
+
export class TwoElementsVerificationResponseBody extends $tea.Model {
|
|
2263
|
+
code?: string;
|
|
2264
|
+
data?: TwoElementsVerificationResponseBodyData;
|
|
2265
|
+
message?: string;
|
|
2266
|
+
requestId?: string;
|
|
2267
|
+
static names(): { [key: string]: string } {
|
|
2268
|
+
return {
|
|
2269
|
+
code: 'Code',
|
|
2270
|
+
data: 'Data',
|
|
2271
|
+
message: 'Message',
|
|
2272
|
+
requestId: 'RequestId',
|
|
2273
|
+
};
|
|
2274
|
+
}
|
|
2275
|
+
|
|
2276
|
+
static types(): { [key: string]: any } {
|
|
2277
|
+
return {
|
|
2278
|
+
code: 'string',
|
|
2279
|
+
data: TwoElementsVerificationResponseBodyData,
|
|
2280
|
+
message: 'string',
|
|
2281
|
+
requestId: 'string',
|
|
2282
|
+
};
|
|
2283
|
+
}
|
|
2284
|
+
|
|
2285
|
+
constructor(map?: { [key: string]: any }) {
|
|
2286
|
+
super(map);
|
|
2287
|
+
}
|
|
2288
|
+
}
|
|
2289
|
+
|
|
2290
|
+
export class TwoElementsVerificationResponse extends $tea.Model {
|
|
2291
|
+
headers: { [key: string]: string };
|
|
2292
|
+
statusCode: number;
|
|
2293
|
+
body: TwoElementsVerificationResponseBody;
|
|
2294
|
+
static names(): { [key: string]: string } {
|
|
2295
|
+
return {
|
|
2296
|
+
headers: 'headers',
|
|
2297
|
+
statusCode: 'statusCode',
|
|
2298
|
+
body: 'body',
|
|
2299
|
+
};
|
|
2300
|
+
}
|
|
2301
|
+
|
|
2302
|
+
static types(): { [key: string]: any } {
|
|
2303
|
+
return {
|
|
2304
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2305
|
+
statusCode: 'number',
|
|
2306
|
+
body: TwoElementsVerificationResponseBody,
|
|
2307
|
+
};
|
|
2308
|
+
}
|
|
2309
|
+
|
|
2310
|
+
constructor(map?: { [key: string]: any }) {
|
|
2311
|
+
super(map);
|
|
2312
|
+
}
|
|
2313
|
+
}
|
|
2314
|
+
|
|
2315
|
+
export class CompanyFourElementsVerificationResponseBodyData extends $tea.Model {
|
|
2316
|
+
detailInfo?: { [key: string]: any };
|
|
2317
|
+
reasonCode?: number;
|
|
2318
|
+
verifyResult?: string;
|
|
2319
|
+
static names(): { [key: string]: string } {
|
|
2320
|
+
return {
|
|
2321
|
+
detailInfo: 'DetailInfo',
|
|
2322
|
+
reasonCode: 'ReasonCode',
|
|
2323
|
+
verifyResult: 'VerifyResult',
|
|
2324
|
+
};
|
|
2325
|
+
}
|
|
2326
|
+
|
|
2327
|
+
static types(): { [key: string]: any } {
|
|
2328
|
+
return {
|
|
2329
|
+
detailInfo: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
|
|
2330
|
+
reasonCode: 'number',
|
|
2331
|
+
verifyResult: 'string',
|
|
2332
|
+
};
|
|
2333
|
+
}
|
|
2334
|
+
|
|
2335
|
+
constructor(map?: { [key: string]: any }) {
|
|
2336
|
+
super(map);
|
|
2337
|
+
}
|
|
2338
|
+
}
|
|
2339
|
+
|
|
2340
|
+
export class CompanyThreeElementsVerificationResponseBodyData extends $tea.Model {
|
|
2341
|
+
detailInfo?: { [key: string]: any };
|
|
2342
|
+
reasonCode?: number;
|
|
2343
|
+
verifyResult?: string;
|
|
2344
|
+
static names(): { [key: string]: string } {
|
|
2345
|
+
return {
|
|
2346
|
+
detailInfo: 'DetailInfo',
|
|
2347
|
+
reasonCode: 'ReasonCode',
|
|
2348
|
+
verifyResult: 'VerifyResult',
|
|
2349
|
+
};
|
|
2350
|
+
}
|
|
2351
|
+
|
|
2352
|
+
static types(): { [key: string]: any } {
|
|
2353
|
+
return {
|
|
2354
|
+
detailInfo: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
|
|
2355
|
+
reasonCode: 'number',
|
|
2356
|
+
verifyResult: 'string',
|
|
2357
|
+
};
|
|
2358
|
+
}
|
|
2359
|
+
|
|
2360
|
+
constructor(map?: { [key: string]: any }) {
|
|
2361
|
+
super(map);
|
|
2362
|
+
}
|
|
2363
|
+
}
|
|
2364
|
+
|
|
2365
|
+
export class CompanyTwoElementsVerificationResponseBodyData extends $tea.Model {
|
|
2366
|
+
detailInfo?: { [key: string]: any };
|
|
2367
|
+
reasonCode?: string;
|
|
2368
|
+
verifyResult?: string;
|
|
2369
|
+
static names(): { [key: string]: string } {
|
|
2370
|
+
return {
|
|
2371
|
+
detailInfo: 'DetailInfo',
|
|
2372
|
+
reasonCode: 'ReasonCode',
|
|
2373
|
+
verifyResult: 'VerifyResult',
|
|
2374
|
+
};
|
|
2375
|
+
}
|
|
2376
|
+
|
|
2377
|
+
static types(): { [key: string]: any } {
|
|
2378
|
+
return {
|
|
2379
|
+
detailInfo: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
|
|
2380
|
+
reasonCode: 'string',
|
|
2381
|
+
verifyResult: 'string',
|
|
2382
|
+
};
|
|
2383
|
+
}
|
|
2384
|
+
|
|
2385
|
+
constructor(map?: { [key: string]: any }) {
|
|
2386
|
+
super(map);
|
|
2387
|
+
}
|
|
2388
|
+
}
|
|
2389
|
+
|
|
2390
|
+
export class DescribeEmptyNumberResponseBodyData extends $tea.Model {
|
|
2391
|
+
number?: string;
|
|
2392
|
+
status?: string;
|
|
2393
|
+
static names(): { [key: string]: string } {
|
|
2394
|
+
return {
|
|
2395
|
+
number: 'Number',
|
|
2396
|
+
status: 'Status',
|
|
2397
|
+
};
|
|
2398
|
+
}
|
|
2399
|
+
|
|
2400
|
+
static types(): { [key: string]: any } {
|
|
2401
|
+
return {
|
|
2402
|
+
number: 'string',
|
|
2403
|
+
status: 'string',
|
|
2404
|
+
};
|
|
2405
|
+
}
|
|
2406
|
+
|
|
2407
|
+
constructor(map?: { [key: string]: any }) {
|
|
2408
|
+
super(map);
|
|
2409
|
+
}
|
|
2410
|
+
}
|
|
2411
|
+
|
|
2412
|
+
export class DescribePhoneNumberAnalysisResponseBodyDataList extends $tea.Model {
|
|
2413
|
+
code?: string;
|
|
2414
|
+
number?: string;
|
|
2415
|
+
static names(): { [key: string]: string } {
|
|
2416
|
+
return {
|
|
2417
|
+
code: 'Code',
|
|
2418
|
+
number: 'Number',
|
|
2419
|
+
};
|
|
2420
|
+
}
|
|
2421
|
+
|
|
2422
|
+
static types(): { [key: string]: any } {
|
|
2423
|
+
return {
|
|
2424
|
+
code: 'string',
|
|
2425
|
+
number: 'string',
|
|
2426
|
+
};
|
|
2427
|
+
}
|
|
2428
|
+
|
|
2429
|
+
constructor(map?: { [key: string]: any }) {
|
|
2430
|
+
super(map);
|
|
2431
|
+
}
|
|
2432
|
+
}
|
|
2433
|
+
|
|
2434
|
+
export class DescribePhoneNumberAnalysisResponseBodyData extends $tea.Model {
|
|
2435
|
+
list?: DescribePhoneNumberAnalysisResponseBodyDataList[];
|
|
2436
|
+
static names(): { [key: string]: string } {
|
|
2437
|
+
return {
|
|
2438
|
+
list: 'List',
|
|
2439
|
+
};
|
|
2440
|
+
}
|
|
2441
|
+
|
|
2442
|
+
static types(): { [key: string]: any } {
|
|
2443
|
+
return {
|
|
2444
|
+
list: { 'type': 'array', 'itemType': DescribePhoneNumberAnalysisResponseBodyDataList },
|
|
2445
|
+
};
|
|
2446
|
+
}
|
|
2447
|
+
|
|
2448
|
+
constructor(map?: { [key: string]: any }) {
|
|
2449
|
+
super(map);
|
|
2450
|
+
}
|
|
2451
|
+
}
|
|
2452
|
+
|
|
2453
|
+
export class DescribePhoneNumberAnalysisAIResponseBodyData extends $tea.Model {
|
|
2454
|
+
code?: string;
|
|
2455
|
+
number?: string;
|
|
2456
|
+
static names(): { [key: string]: string } {
|
|
2457
|
+
return {
|
|
2458
|
+
code: 'Code',
|
|
2459
|
+
number: 'Number',
|
|
2460
|
+
};
|
|
2461
|
+
}
|
|
2462
|
+
|
|
2463
|
+
static types(): { [key: string]: any } {
|
|
2464
|
+
return {
|
|
2465
|
+
code: 'string',
|
|
2466
|
+
number: 'string',
|
|
2467
|
+
};
|
|
2468
|
+
}
|
|
2469
|
+
|
|
2470
|
+
constructor(map?: { [key: string]: any }) {
|
|
2471
|
+
super(map);
|
|
2472
|
+
}
|
|
2473
|
+
}
|
|
2474
|
+
|
|
2475
|
+
export class DescribePhoneNumberAttributeResponseBodyPhoneNumberAttribute extends $tea.Model {
|
|
2476
|
+
basicCarrier?: string;
|
|
2477
|
+
carrier?: string;
|
|
2478
|
+
city?: string;
|
|
2479
|
+
isNumberPortability?: boolean;
|
|
2480
|
+
numberSegment?: number;
|
|
2481
|
+
province?: string;
|
|
2482
|
+
static names(): { [key: string]: string } {
|
|
2483
|
+
return {
|
|
2484
|
+
basicCarrier: 'BasicCarrier',
|
|
2485
|
+
carrier: 'Carrier',
|
|
2486
|
+
city: 'City',
|
|
2487
|
+
isNumberPortability: 'IsNumberPortability',
|
|
2488
|
+
numberSegment: 'NumberSegment',
|
|
2489
|
+
province: 'Province',
|
|
2490
|
+
};
|
|
2491
|
+
}
|
|
2492
|
+
|
|
2493
|
+
static types(): { [key: string]: any } {
|
|
2494
|
+
return {
|
|
2495
|
+
basicCarrier: 'string',
|
|
2496
|
+
carrier: 'string',
|
|
2497
|
+
city: 'string',
|
|
2498
|
+
isNumberPortability: 'boolean',
|
|
2499
|
+
numberSegment: 'number',
|
|
2500
|
+
province: 'string',
|
|
2501
|
+
};
|
|
2502
|
+
}
|
|
2503
|
+
|
|
2504
|
+
constructor(map?: { [key: string]: any }) {
|
|
2505
|
+
super(map);
|
|
2506
|
+
}
|
|
2507
|
+
}
|
|
2508
|
+
|
|
2509
|
+
export class DescribePhoneNumberOnlineTimeResponseBodyData extends $tea.Model {
|
|
2510
|
+
carrierCode?: string;
|
|
2511
|
+
verifyResult?: string;
|
|
2512
|
+
static names(): { [key: string]: string } {
|
|
2513
|
+
return {
|
|
2514
|
+
carrierCode: 'CarrierCode',
|
|
2515
|
+
verifyResult: 'VerifyResult',
|
|
2516
|
+
};
|
|
2517
|
+
}
|
|
2518
|
+
|
|
2519
|
+
static types(): { [key: string]: any } {
|
|
2520
|
+
return {
|
|
2521
|
+
carrierCode: 'string',
|
|
2522
|
+
verifyResult: 'string',
|
|
2523
|
+
};
|
|
2524
|
+
}
|
|
2525
|
+
|
|
2526
|
+
constructor(map?: { [key: string]: any }) {
|
|
2527
|
+
super(map);
|
|
2528
|
+
}
|
|
2529
|
+
}
|
|
2530
|
+
|
|
2531
|
+
export class DescribePhoneNumberOperatorAttributeResponseBodyData extends $tea.Model {
|
|
2532
|
+
basicCarrier?: string;
|
|
2533
|
+
carrier?: string;
|
|
2534
|
+
city?: string;
|
|
2535
|
+
isNumberPortability?: boolean;
|
|
2536
|
+
numberSegment?: number;
|
|
2537
|
+
province?: string;
|
|
2538
|
+
static names(): { [key: string]: string } {
|
|
2539
|
+
return {
|
|
2540
|
+
basicCarrier: 'BasicCarrier',
|
|
2541
|
+
carrier: 'Carrier',
|
|
2542
|
+
city: 'City',
|
|
2543
|
+
isNumberPortability: 'IsNumberPortability',
|
|
2544
|
+
numberSegment: 'NumberSegment',
|
|
2545
|
+
province: 'Province',
|
|
2546
|
+
};
|
|
2547
|
+
}
|
|
2548
|
+
|
|
2549
|
+
static types(): { [key: string]: any } {
|
|
2550
|
+
return {
|
|
2551
|
+
basicCarrier: 'string',
|
|
2552
|
+
carrier: 'string',
|
|
2553
|
+
city: 'string',
|
|
2554
|
+
isNumberPortability: 'boolean',
|
|
2555
|
+
numberSegment: 'number',
|
|
2556
|
+
province: 'string',
|
|
2557
|
+
};
|
|
2558
|
+
}
|
|
2559
|
+
|
|
2560
|
+
constructor(map?: { [key: string]: any }) {
|
|
2561
|
+
super(map);
|
|
2562
|
+
}
|
|
2563
|
+
}
|
|
2564
|
+
|
|
2565
|
+
export class DescribePhoneTwiceTelVerifyResponseBodyData extends $tea.Model {
|
|
2566
|
+
carrier?: string;
|
|
2567
|
+
verifyResult?: string;
|
|
2568
|
+
static names(): { [key: string]: string } {
|
|
2569
|
+
return {
|
|
2570
|
+
carrier: 'Carrier',
|
|
2571
|
+
verifyResult: 'VerifyResult',
|
|
2572
|
+
};
|
|
2573
|
+
}
|
|
2574
|
+
|
|
2575
|
+
static types(): { [key: string]: any } {
|
|
2576
|
+
return {
|
|
2577
|
+
carrier: 'string',
|
|
2578
|
+
verifyResult: 'string',
|
|
2579
|
+
};
|
|
2580
|
+
}
|
|
2581
|
+
|
|
2582
|
+
constructor(map?: { [key: string]: any }) {
|
|
2583
|
+
super(map);
|
|
2584
|
+
}
|
|
2585
|
+
}
|
|
2586
|
+
|
|
2587
|
+
export class InvalidPhoneNumberFilterResponseBodyData extends $tea.Model {
|
|
2588
|
+
code?: string;
|
|
2589
|
+
encryptedNumber?: string;
|
|
2590
|
+
expireTime?: string;
|
|
2591
|
+
originalNumber?: string;
|
|
2592
|
+
static names(): { [key: string]: string } {
|
|
2593
|
+
return {
|
|
2594
|
+
code: 'Code',
|
|
2595
|
+
encryptedNumber: 'EncryptedNumber',
|
|
2596
|
+
expireTime: 'ExpireTime',
|
|
2597
|
+
originalNumber: 'OriginalNumber',
|
|
2598
|
+
};
|
|
2599
|
+
}
|
|
2600
|
+
|
|
2601
|
+
static types(): { [key: string]: any } {
|
|
2602
|
+
return {
|
|
2603
|
+
code: 'string',
|
|
2604
|
+
encryptedNumber: 'string',
|
|
2605
|
+
expireTime: 'string',
|
|
2606
|
+
originalNumber: 'string',
|
|
2607
|
+
};
|
|
2608
|
+
}
|
|
2609
|
+
|
|
2610
|
+
constructor(map?: { [key: string]: any }) {
|
|
2611
|
+
super(map);
|
|
2612
|
+
}
|
|
2613
|
+
}
|
|
2614
|
+
|
|
2615
|
+
export class PhoneNumberConvertServiceResponseBodyData extends $tea.Model {
|
|
2616
|
+
converResult?: boolean;
|
|
2617
|
+
number?: string;
|
|
2618
|
+
numberMd5?: string;
|
|
2619
|
+
numberSha256?: string;
|
|
2620
|
+
static names(): { [key: string]: string } {
|
|
2621
|
+
return {
|
|
2622
|
+
converResult: 'ConverResult',
|
|
2623
|
+
number: 'Number',
|
|
2624
|
+
numberMd5: 'NumberMd5',
|
|
2625
|
+
numberSha256: 'NumberSha256',
|
|
2626
|
+
};
|
|
2627
|
+
}
|
|
2628
|
+
|
|
2629
|
+
static types(): { [key: string]: any } {
|
|
2630
|
+
return {
|
|
2631
|
+
converResult: 'boolean',
|
|
2632
|
+
number: 'string',
|
|
2633
|
+
numberMd5: 'string',
|
|
2634
|
+
numberSha256: 'string',
|
|
2635
|
+
};
|
|
2636
|
+
}
|
|
2637
|
+
|
|
2638
|
+
constructor(map?: { [key: string]: any }) {
|
|
2639
|
+
super(map);
|
|
2640
|
+
}
|
|
2641
|
+
}
|
|
2642
|
+
|
|
2643
|
+
export class PhoneNumberEncryptResponseBodyData extends $tea.Model {
|
|
2644
|
+
encryptedNumber?: string;
|
|
2645
|
+
expireTime?: string;
|
|
2646
|
+
originalNumber?: string;
|
|
2647
|
+
static names(): { [key: string]: string } {
|
|
2648
|
+
return {
|
|
2649
|
+
encryptedNumber: 'EncryptedNumber',
|
|
2650
|
+
expireTime: 'ExpireTime',
|
|
2651
|
+
originalNumber: 'OriginalNumber',
|
|
2652
|
+
};
|
|
2653
|
+
}
|
|
2654
|
+
|
|
2655
|
+
static types(): { [key: string]: any } {
|
|
2656
|
+
return {
|
|
2657
|
+
encryptedNumber: 'string',
|
|
2658
|
+
expireTime: 'string',
|
|
2659
|
+
originalNumber: 'string',
|
|
2660
|
+
};
|
|
2661
|
+
}
|
|
2662
|
+
|
|
2663
|
+
constructor(map?: { [key: string]: any }) {
|
|
2664
|
+
super(map);
|
|
2665
|
+
}
|
|
2666
|
+
}
|
|
2667
|
+
|
|
2668
|
+
export class PhoneNumberStatusForAccountResponseBodyData extends $tea.Model {
|
|
2669
|
+
carrier?: string;
|
|
2670
|
+
status?: string;
|
|
2671
|
+
static names(): { [key: string]: string } {
|
|
2672
|
+
return {
|
|
2673
|
+
carrier: 'Carrier',
|
|
2674
|
+
status: 'Status',
|
|
2675
|
+
};
|
|
2676
|
+
}
|
|
2677
|
+
|
|
2678
|
+
static types(): { [key: string]: any } {
|
|
2679
|
+
return {
|
|
2680
|
+
carrier: 'string',
|
|
2681
|
+
status: 'string',
|
|
2682
|
+
};
|
|
2683
|
+
}
|
|
2684
|
+
|
|
2685
|
+
constructor(map?: { [key: string]: any }) {
|
|
2686
|
+
super(map);
|
|
2687
|
+
}
|
|
2688
|
+
}
|
|
2689
|
+
|
|
2690
|
+
export class PhoneNumberStatusForPublicResponseBodyData extends $tea.Model {
|
|
2691
|
+
carrier?: string;
|
|
2692
|
+
status?: string;
|
|
2693
|
+
static names(): { [key: string]: string } {
|
|
2694
|
+
return {
|
|
2695
|
+
carrier: 'Carrier',
|
|
2696
|
+
status: 'Status',
|
|
2697
|
+
};
|
|
2698
|
+
}
|
|
2699
|
+
|
|
2700
|
+
static types(): { [key: string]: any } {
|
|
2701
|
+
return {
|
|
2702
|
+
carrier: 'string',
|
|
2703
|
+
status: 'string',
|
|
2704
|
+
};
|
|
2705
|
+
}
|
|
2706
|
+
|
|
2707
|
+
constructor(map?: { [key: string]: any }) {
|
|
2708
|
+
super(map);
|
|
2709
|
+
}
|
|
2710
|
+
}
|
|
2711
|
+
|
|
2712
|
+
export class PhoneNumberStatusForRealResponseBodyData extends $tea.Model {
|
|
2713
|
+
carrier?: string;
|
|
2714
|
+
status?: string;
|
|
2715
|
+
static names(): { [key: string]: string } {
|
|
2716
|
+
return {
|
|
2717
|
+
carrier: 'Carrier',
|
|
2718
|
+
status: 'Status',
|
|
2719
|
+
};
|
|
2720
|
+
}
|
|
2721
|
+
|
|
2722
|
+
static types(): { [key: string]: any } {
|
|
2723
|
+
return {
|
|
2724
|
+
carrier: 'string',
|
|
2725
|
+
status: 'string',
|
|
2726
|
+
};
|
|
2727
|
+
}
|
|
2728
|
+
|
|
2729
|
+
constructor(map?: { [key: string]: any }) {
|
|
2730
|
+
super(map);
|
|
2731
|
+
}
|
|
2732
|
+
}
|
|
2733
|
+
|
|
2734
|
+
export class PhoneNumberStatusForSmsResponseBodyData extends $tea.Model {
|
|
2735
|
+
carrier?: string;
|
|
2736
|
+
status?: string;
|
|
2737
|
+
static names(): { [key: string]: string } {
|
|
2738
|
+
return {
|
|
2739
|
+
carrier: 'Carrier',
|
|
2740
|
+
status: 'Status',
|
|
2741
|
+
};
|
|
2742
|
+
}
|
|
2743
|
+
|
|
2744
|
+
static types(): { [key: string]: any } {
|
|
2745
|
+
return {
|
|
2746
|
+
carrier: 'string',
|
|
2747
|
+
status: 'string',
|
|
2748
|
+
};
|
|
2749
|
+
}
|
|
2750
|
+
|
|
2751
|
+
constructor(map?: { [key: string]: any }) {
|
|
2752
|
+
super(map);
|
|
2753
|
+
}
|
|
2754
|
+
}
|
|
2755
|
+
|
|
2756
|
+
export class PhoneNumberStatusForVirtualResponseBodyData extends $tea.Model {
|
|
2757
|
+
isPrivacyNumber?: boolean;
|
|
2758
|
+
static names(): { [key: string]: string } {
|
|
2759
|
+
return {
|
|
2760
|
+
isPrivacyNumber: 'IsPrivacyNumber',
|
|
2761
|
+
};
|
|
2762
|
+
}
|
|
2763
|
+
|
|
2764
|
+
static types(): { [key: string]: any } {
|
|
2765
|
+
return {
|
|
2766
|
+
isPrivacyNumber: 'boolean',
|
|
2767
|
+
};
|
|
2768
|
+
}
|
|
2769
|
+
|
|
2770
|
+
constructor(map?: { [key: string]: any }) {
|
|
2771
|
+
super(map);
|
|
2772
|
+
}
|
|
2773
|
+
}
|
|
2774
|
+
|
|
2775
|
+
export class PhoneNumberStatusForVoiceResponseBodyData extends $tea.Model {
|
|
2776
|
+
carrier?: string;
|
|
2777
|
+
status?: string;
|
|
2778
|
+
static names(): { [key: string]: string } {
|
|
2779
|
+
return {
|
|
2780
|
+
carrier: 'Carrier',
|
|
2781
|
+
status: 'Status',
|
|
2782
|
+
};
|
|
2783
|
+
}
|
|
2784
|
+
|
|
2785
|
+
static types(): { [key: string]: any } {
|
|
2786
|
+
return {
|
|
2787
|
+
carrier: 'string',
|
|
2788
|
+
status: 'string',
|
|
2789
|
+
};
|
|
2790
|
+
}
|
|
2791
|
+
|
|
2792
|
+
constructor(map?: { [key: string]: any }) {
|
|
2793
|
+
super(map);
|
|
2794
|
+
}
|
|
2795
|
+
}
|
|
2796
|
+
|
|
2797
|
+
export class QueryTagApplyRuleResponseBodyData extends $tea.Model {
|
|
2798
|
+
applyMaterialDesc?: string;
|
|
2799
|
+
autoAudit?: number;
|
|
2800
|
+
chargingStandardLink?: string;
|
|
2801
|
+
encryptedQuery?: number;
|
|
2802
|
+
needApplyMaterial?: number;
|
|
2803
|
+
slaLink?: string;
|
|
2804
|
+
static names(): { [key: string]: string } {
|
|
2805
|
+
return {
|
|
2806
|
+
applyMaterialDesc: 'ApplyMaterialDesc',
|
|
2807
|
+
autoAudit: 'AutoAudit',
|
|
2808
|
+
chargingStandardLink: 'ChargingStandardLink',
|
|
2809
|
+
encryptedQuery: 'EncryptedQuery',
|
|
2810
|
+
needApplyMaterial: 'NeedApplyMaterial',
|
|
2811
|
+
slaLink: 'SlaLink',
|
|
2812
|
+
};
|
|
2813
|
+
}
|
|
2814
|
+
|
|
2815
|
+
static types(): { [key: string]: any } {
|
|
2816
|
+
return {
|
|
2817
|
+
applyMaterialDesc: 'string',
|
|
2818
|
+
autoAudit: 'number',
|
|
2819
|
+
chargingStandardLink: 'string',
|
|
2820
|
+
encryptedQuery: 'number',
|
|
2821
|
+
needApplyMaterial: 'number',
|
|
2822
|
+
slaLink: 'string',
|
|
2823
|
+
};
|
|
2824
|
+
}
|
|
2825
|
+
|
|
2826
|
+
constructor(map?: { [key: string]: any }) {
|
|
2827
|
+
super(map);
|
|
2828
|
+
}
|
|
2829
|
+
}
|
|
2830
|
+
|
|
2831
|
+
export class QueryTagInfoBySelectionResponseBodyDataParamListValueDict extends $tea.Model {
|
|
2832
|
+
code?: string;
|
|
2833
|
+
desc?: string;
|
|
2834
|
+
static names(): { [key: string]: string } {
|
|
2835
|
+
return {
|
|
2836
|
+
code: 'Code',
|
|
2837
|
+
desc: 'Desc',
|
|
2838
|
+
};
|
|
2839
|
+
}
|
|
2840
|
+
|
|
2841
|
+
static types(): { [key: string]: any } {
|
|
2842
|
+
return {
|
|
2843
|
+
code: 'string',
|
|
2844
|
+
desc: 'string',
|
|
2845
|
+
};
|
|
2846
|
+
}
|
|
2847
|
+
|
|
2848
|
+
constructor(map?: { [key: string]: any }) {
|
|
2849
|
+
super(map);
|
|
2850
|
+
}
|
|
2851
|
+
}
|
|
2852
|
+
|
|
2853
|
+
export class QueryTagInfoBySelectionResponseBodyDataParamList extends $tea.Model {
|
|
2854
|
+
code?: string;
|
|
2855
|
+
hint?: string;
|
|
2856
|
+
must?: boolean;
|
|
2857
|
+
name?: string;
|
|
2858
|
+
type?: string;
|
|
2859
|
+
valueDict?: QueryTagInfoBySelectionResponseBodyDataParamListValueDict[];
|
|
2860
|
+
static names(): { [key: string]: string } {
|
|
2861
|
+
return {
|
|
2862
|
+
code: 'Code',
|
|
2863
|
+
hint: 'Hint',
|
|
2864
|
+
must: 'Must',
|
|
2865
|
+
name: 'Name',
|
|
2866
|
+
type: 'Type',
|
|
2867
|
+
valueDict: 'ValueDict',
|
|
2868
|
+
};
|
|
2869
|
+
}
|
|
2870
|
+
|
|
2871
|
+
static types(): { [key: string]: any } {
|
|
2872
|
+
return {
|
|
2873
|
+
code: 'string',
|
|
2874
|
+
hint: 'string',
|
|
2875
|
+
must: 'boolean',
|
|
2876
|
+
name: 'string',
|
|
2877
|
+
type: 'string',
|
|
2878
|
+
valueDict: { 'type': 'array', 'itemType': QueryTagInfoBySelectionResponseBodyDataParamListValueDict },
|
|
2879
|
+
};
|
|
2880
|
+
}
|
|
2881
|
+
|
|
2882
|
+
constructor(map?: { [key: string]: any }) {
|
|
2883
|
+
super(map);
|
|
2884
|
+
}
|
|
2885
|
+
}
|
|
2886
|
+
|
|
2887
|
+
export class QueryTagInfoBySelectionResponseBodyData extends $tea.Model {
|
|
2888
|
+
authCodeList?: string[];
|
|
2889
|
+
demoAddress?: string;
|
|
2890
|
+
docAddress?: string;
|
|
2891
|
+
enumDefinitionAddress?: string;
|
|
2892
|
+
flowName?: string;
|
|
2893
|
+
industryId?: number;
|
|
2894
|
+
industryName?: string;
|
|
2895
|
+
paramList?: QueryTagInfoBySelectionResponseBodyDataParamList[];
|
|
2896
|
+
sceneId?: number;
|
|
2897
|
+
sceneName?: string;
|
|
2898
|
+
tagId?: number;
|
|
2899
|
+
tagName?: string;
|
|
2900
|
+
static names(): { [key: string]: string } {
|
|
2901
|
+
return {
|
|
2902
|
+
authCodeList: 'AuthCodeList',
|
|
2903
|
+
demoAddress: 'DemoAddress',
|
|
2904
|
+
docAddress: 'DocAddress',
|
|
2905
|
+
enumDefinitionAddress: 'EnumDefinitionAddress',
|
|
2906
|
+
flowName: 'FlowName',
|
|
2907
|
+
industryId: 'IndustryId',
|
|
2908
|
+
industryName: 'IndustryName',
|
|
2909
|
+
paramList: 'ParamList',
|
|
2910
|
+
sceneId: 'SceneId',
|
|
2911
|
+
sceneName: 'SceneName',
|
|
2912
|
+
tagId: 'TagId',
|
|
2913
|
+
tagName: 'TagName',
|
|
2914
|
+
};
|
|
2915
|
+
}
|
|
2916
|
+
|
|
2917
|
+
static types(): { [key: string]: any } {
|
|
2918
|
+
return {
|
|
2919
|
+
authCodeList: { 'type': 'array', 'itemType': 'string' },
|
|
2920
|
+
demoAddress: 'string',
|
|
2921
|
+
docAddress: 'string',
|
|
2922
|
+
enumDefinitionAddress: 'string',
|
|
2923
|
+
flowName: 'string',
|
|
2924
|
+
industryId: 'number',
|
|
2925
|
+
industryName: 'string',
|
|
2926
|
+
paramList: { 'type': 'array', 'itemType': QueryTagInfoBySelectionResponseBodyDataParamList },
|
|
2927
|
+
sceneId: 'number',
|
|
2928
|
+
sceneName: 'string',
|
|
2929
|
+
tagId: 'number',
|
|
2930
|
+
tagName: 'string',
|
|
2931
|
+
};
|
|
2932
|
+
}
|
|
2933
|
+
|
|
2934
|
+
constructor(map?: { [key: string]: any }) {
|
|
2935
|
+
super(map);
|
|
2936
|
+
}
|
|
2937
|
+
}
|
|
2938
|
+
|
|
2939
|
+
export class QueryTagListPageResponseBodyDataRecords extends $tea.Model {
|
|
2940
|
+
apiName?: string;
|
|
2941
|
+
code?: string;
|
|
2942
|
+
docAddress?: string;
|
|
2943
|
+
id?: number;
|
|
2944
|
+
industryId?: number;
|
|
2945
|
+
industryName?: string;
|
|
2946
|
+
introduction?: string;
|
|
2947
|
+
isOpen?: number;
|
|
2948
|
+
name?: string;
|
|
2949
|
+
saleStatusStr?: string;
|
|
2950
|
+
sceneId?: number;
|
|
2951
|
+
sceneName?: string;
|
|
2952
|
+
static names(): { [key: string]: string } {
|
|
2953
|
+
return {
|
|
2954
|
+
apiName: 'ApiName',
|
|
2955
|
+
code: 'Code',
|
|
2956
|
+
docAddress: 'DocAddress',
|
|
2957
|
+
id: 'Id',
|
|
2958
|
+
industryId: 'IndustryId',
|
|
2959
|
+
industryName: 'IndustryName',
|
|
2960
|
+
introduction: 'Introduction',
|
|
2961
|
+
isOpen: 'IsOpen',
|
|
2962
|
+
name: 'Name',
|
|
2963
|
+
saleStatusStr: 'SaleStatusStr',
|
|
2964
|
+
sceneId: 'SceneId',
|
|
2965
|
+
sceneName: 'SceneName',
|
|
2966
|
+
};
|
|
2967
|
+
}
|
|
2968
|
+
|
|
2969
|
+
static types(): { [key: string]: any } {
|
|
2970
|
+
return {
|
|
2971
|
+
apiName: 'string',
|
|
2972
|
+
code: 'string',
|
|
2973
|
+
docAddress: 'string',
|
|
2974
|
+
id: 'number',
|
|
2975
|
+
industryId: 'number',
|
|
2976
|
+
industryName: 'string',
|
|
2977
|
+
introduction: 'string',
|
|
2978
|
+
isOpen: 'number',
|
|
2979
|
+
name: 'string',
|
|
2980
|
+
saleStatusStr: 'string',
|
|
2981
|
+
sceneId: 'number',
|
|
2982
|
+
sceneName: 'string',
|
|
2983
|
+
};
|
|
1631
2984
|
}
|
|
1632
2985
|
|
|
1633
2986
|
constructor(map?: { [key: string]: any }) {
|
|
@@ -1635,20 +2988,78 @@ export class PhoneNumberStatusForVirtualResponseBodyData extends $tea.Model {
|
|
|
1635
2988
|
}
|
|
1636
2989
|
}
|
|
1637
2990
|
|
|
1638
|
-
export class
|
|
1639
|
-
|
|
1640
|
-
|
|
2991
|
+
export class QueryTagListPageResponseBodyData extends $tea.Model {
|
|
2992
|
+
pageNo?: number;
|
|
2993
|
+
pageSize?: number;
|
|
2994
|
+
records?: QueryTagListPageResponseBodyDataRecords[];
|
|
2995
|
+
totalCount?: number;
|
|
2996
|
+
totalPage?: number;
|
|
1641
2997
|
static names(): { [key: string]: string } {
|
|
1642
2998
|
return {
|
|
1643
|
-
|
|
1644
|
-
|
|
2999
|
+
pageNo: 'PageNo',
|
|
3000
|
+
pageSize: 'PageSize',
|
|
3001
|
+
records: 'Records',
|
|
3002
|
+
totalCount: 'TotalCount',
|
|
3003
|
+
totalPage: 'TotalPage',
|
|
1645
3004
|
};
|
|
1646
3005
|
}
|
|
1647
3006
|
|
|
1648
3007
|
static types(): { [key: string]: any } {
|
|
1649
3008
|
return {
|
|
1650
|
-
|
|
1651
|
-
|
|
3009
|
+
pageNo: 'number',
|
|
3010
|
+
pageSize: 'number',
|
|
3011
|
+
records: { 'type': 'array', 'itemType': QueryTagListPageResponseBodyDataRecords },
|
|
3012
|
+
totalCount: 'number',
|
|
3013
|
+
totalPage: 'number',
|
|
3014
|
+
};
|
|
3015
|
+
}
|
|
3016
|
+
|
|
3017
|
+
constructor(map?: { [key: string]: any }) {
|
|
3018
|
+
super(map);
|
|
3019
|
+
}
|
|
3020
|
+
}
|
|
3021
|
+
|
|
3022
|
+
export class QueryUsageStatisticsByTagIdResponseBodyData extends $tea.Model {
|
|
3023
|
+
authorizationCode?: string;
|
|
3024
|
+
failTotal?: number;
|
|
3025
|
+
gmtDateStr?: string;
|
|
3026
|
+
id?: number;
|
|
3027
|
+
industryName?: string;
|
|
3028
|
+
partnerId?: number;
|
|
3029
|
+
sceneName?: string;
|
|
3030
|
+
successTotal?: number;
|
|
3031
|
+
tagId?: number;
|
|
3032
|
+
tagName?: string;
|
|
3033
|
+
total?: number;
|
|
3034
|
+
static names(): { [key: string]: string } {
|
|
3035
|
+
return {
|
|
3036
|
+
authorizationCode: 'AuthorizationCode',
|
|
3037
|
+
failTotal: 'FailTotal',
|
|
3038
|
+
gmtDateStr: 'GmtDateStr',
|
|
3039
|
+
id: 'Id',
|
|
3040
|
+
industryName: 'IndustryName',
|
|
3041
|
+
partnerId: 'PartnerId',
|
|
3042
|
+
sceneName: 'SceneName',
|
|
3043
|
+
successTotal: 'SuccessTotal',
|
|
3044
|
+
tagId: 'TagId',
|
|
3045
|
+
tagName: 'TagName',
|
|
3046
|
+
total: 'Total',
|
|
3047
|
+
};
|
|
3048
|
+
}
|
|
3049
|
+
|
|
3050
|
+
static types(): { [key: string]: any } {
|
|
3051
|
+
return {
|
|
3052
|
+
authorizationCode: 'string',
|
|
3053
|
+
failTotal: 'number',
|
|
3054
|
+
gmtDateStr: 'string',
|
|
3055
|
+
id: 'number',
|
|
3056
|
+
industryName: 'string',
|
|
3057
|
+
partnerId: 'number',
|
|
3058
|
+
sceneName: 'string',
|
|
3059
|
+
successTotal: 'number',
|
|
3060
|
+
tagId: 'number',
|
|
3061
|
+
tagName: 'string',
|
|
3062
|
+
total: 'number',
|
|
1652
3063
|
};
|
|
1653
3064
|
}
|
|
1654
3065
|
|
|
@@ -1724,6 +3135,165 @@ export default class Client extends OpenApi {
|
|
|
1724
3135
|
return EndpointUtil.getEndpointRules(productId, regionId, endpointRule, network, suffix);
|
|
1725
3136
|
}
|
|
1726
3137
|
|
|
3138
|
+
async companyFourElementsVerificationWithOptions(request: CompanyFourElementsVerificationRequest, runtime: $Util.RuntimeOptions): Promise<CompanyFourElementsVerificationResponse> {
|
|
3139
|
+
Util.validateModel(request);
|
|
3140
|
+
let query = { };
|
|
3141
|
+
if (!Util.isUnset(request.authCode)) {
|
|
3142
|
+
query["AuthCode"] = request.authCode;
|
|
3143
|
+
}
|
|
3144
|
+
|
|
3145
|
+
if (!Util.isUnset(request.epCertName)) {
|
|
3146
|
+
query["EpCertName"] = request.epCertName;
|
|
3147
|
+
}
|
|
3148
|
+
|
|
3149
|
+
if (!Util.isUnset(request.epCertNo)) {
|
|
3150
|
+
query["EpCertNo"] = request.epCertNo;
|
|
3151
|
+
}
|
|
3152
|
+
|
|
3153
|
+
if (!Util.isUnset(request.legalPersonCertName)) {
|
|
3154
|
+
query["LegalPersonCertName"] = request.legalPersonCertName;
|
|
3155
|
+
}
|
|
3156
|
+
|
|
3157
|
+
if (!Util.isUnset(request.legalPersonCertNo)) {
|
|
3158
|
+
query["LegalPersonCertNo"] = request.legalPersonCertNo;
|
|
3159
|
+
}
|
|
3160
|
+
|
|
3161
|
+
if (!Util.isUnset(request.ownerId)) {
|
|
3162
|
+
query["OwnerId"] = request.ownerId;
|
|
3163
|
+
}
|
|
3164
|
+
|
|
3165
|
+
if (!Util.isUnset(request.resourceOwnerAccount)) {
|
|
3166
|
+
query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
|
|
3167
|
+
}
|
|
3168
|
+
|
|
3169
|
+
if (!Util.isUnset(request.resourceOwnerId)) {
|
|
3170
|
+
query["ResourceOwnerId"] = request.resourceOwnerId;
|
|
3171
|
+
}
|
|
3172
|
+
|
|
3173
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
3174
|
+
query: OpenApiUtil.query(query),
|
|
3175
|
+
});
|
|
3176
|
+
let params = new $OpenApi.Params({
|
|
3177
|
+
action: "CompanyFourElementsVerification",
|
|
3178
|
+
version: "2020-02-17",
|
|
3179
|
+
protocol: "HTTPS",
|
|
3180
|
+
pathname: "/",
|
|
3181
|
+
method: "POST",
|
|
3182
|
+
authType: "AK",
|
|
3183
|
+
style: "RPC",
|
|
3184
|
+
reqBodyType: "formData",
|
|
3185
|
+
bodyType: "json",
|
|
3186
|
+
});
|
|
3187
|
+
return $tea.cast<CompanyFourElementsVerificationResponse>(await this.callApi(params, req, runtime), new CompanyFourElementsVerificationResponse({}));
|
|
3188
|
+
}
|
|
3189
|
+
|
|
3190
|
+
async companyFourElementsVerification(request: CompanyFourElementsVerificationRequest): Promise<CompanyFourElementsVerificationResponse> {
|
|
3191
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
3192
|
+
return await this.companyFourElementsVerificationWithOptions(request, runtime);
|
|
3193
|
+
}
|
|
3194
|
+
|
|
3195
|
+
async companyThreeElementsVerificationWithOptions(request: CompanyThreeElementsVerificationRequest, runtime: $Util.RuntimeOptions): Promise<CompanyThreeElementsVerificationResponse> {
|
|
3196
|
+
Util.validateModel(request);
|
|
3197
|
+
let query = { };
|
|
3198
|
+
if (!Util.isUnset(request.authCode)) {
|
|
3199
|
+
query["AuthCode"] = request.authCode;
|
|
3200
|
+
}
|
|
3201
|
+
|
|
3202
|
+
if (!Util.isUnset(request.epCertName)) {
|
|
3203
|
+
query["EpCertName"] = request.epCertName;
|
|
3204
|
+
}
|
|
3205
|
+
|
|
3206
|
+
if (!Util.isUnset(request.epCertNo)) {
|
|
3207
|
+
query["EpCertNo"] = request.epCertNo;
|
|
3208
|
+
}
|
|
3209
|
+
|
|
3210
|
+
if (!Util.isUnset(request.legalPersonCertName)) {
|
|
3211
|
+
query["LegalPersonCertName"] = request.legalPersonCertName;
|
|
3212
|
+
}
|
|
3213
|
+
|
|
3214
|
+
if (!Util.isUnset(request.ownerId)) {
|
|
3215
|
+
query["OwnerId"] = request.ownerId;
|
|
3216
|
+
}
|
|
3217
|
+
|
|
3218
|
+
if (!Util.isUnset(request.resourceOwnerAccount)) {
|
|
3219
|
+
query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
|
|
3220
|
+
}
|
|
3221
|
+
|
|
3222
|
+
if (!Util.isUnset(request.resourceOwnerId)) {
|
|
3223
|
+
query["ResourceOwnerId"] = request.resourceOwnerId;
|
|
3224
|
+
}
|
|
3225
|
+
|
|
3226
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
3227
|
+
query: OpenApiUtil.query(query),
|
|
3228
|
+
});
|
|
3229
|
+
let params = new $OpenApi.Params({
|
|
3230
|
+
action: "CompanyThreeElementsVerification",
|
|
3231
|
+
version: "2020-02-17",
|
|
3232
|
+
protocol: "HTTPS",
|
|
3233
|
+
pathname: "/",
|
|
3234
|
+
method: "POST",
|
|
3235
|
+
authType: "AK",
|
|
3236
|
+
style: "RPC",
|
|
3237
|
+
reqBodyType: "formData",
|
|
3238
|
+
bodyType: "json",
|
|
3239
|
+
});
|
|
3240
|
+
return $tea.cast<CompanyThreeElementsVerificationResponse>(await this.callApi(params, req, runtime), new CompanyThreeElementsVerificationResponse({}));
|
|
3241
|
+
}
|
|
3242
|
+
|
|
3243
|
+
async companyThreeElementsVerification(request: CompanyThreeElementsVerificationRequest): Promise<CompanyThreeElementsVerificationResponse> {
|
|
3244
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
3245
|
+
return await this.companyThreeElementsVerificationWithOptions(request, runtime);
|
|
3246
|
+
}
|
|
3247
|
+
|
|
3248
|
+
async companyTwoElementsVerificationWithOptions(request: CompanyTwoElementsVerificationRequest, runtime: $Util.RuntimeOptions): Promise<CompanyTwoElementsVerificationResponse> {
|
|
3249
|
+
Util.validateModel(request);
|
|
3250
|
+
let query = { };
|
|
3251
|
+
if (!Util.isUnset(request.authCode)) {
|
|
3252
|
+
query["AuthCode"] = request.authCode;
|
|
3253
|
+
}
|
|
3254
|
+
|
|
3255
|
+
if (!Util.isUnset(request.epCertName)) {
|
|
3256
|
+
query["EpCertName"] = request.epCertName;
|
|
3257
|
+
}
|
|
3258
|
+
|
|
3259
|
+
if (!Util.isUnset(request.epCertNo)) {
|
|
3260
|
+
query["EpCertNo"] = request.epCertNo;
|
|
3261
|
+
}
|
|
3262
|
+
|
|
3263
|
+
if (!Util.isUnset(request.ownerId)) {
|
|
3264
|
+
query["OwnerId"] = request.ownerId;
|
|
3265
|
+
}
|
|
3266
|
+
|
|
3267
|
+
if (!Util.isUnset(request.resourceOwnerAccount)) {
|
|
3268
|
+
query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
|
|
3269
|
+
}
|
|
3270
|
+
|
|
3271
|
+
if (!Util.isUnset(request.resourceOwnerId)) {
|
|
3272
|
+
query["ResourceOwnerId"] = request.resourceOwnerId;
|
|
3273
|
+
}
|
|
3274
|
+
|
|
3275
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
3276
|
+
query: OpenApiUtil.query(query),
|
|
3277
|
+
});
|
|
3278
|
+
let params = new $OpenApi.Params({
|
|
3279
|
+
action: "CompanyTwoElementsVerification",
|
|
3280
|
+
version: "2020-02-17",
|
|
3281
|
+
protocol: "HTTPS",
|
|
3282
|
+
pathname: "/",
|
|
3283
|
+
method: "POST",
|
|
3284
|
+
authType: "AK",
|
|
3285
|
+
style: "RPC",
|
|
3286
|
+
reqBodyType: "formData",
|
|
3287
|
+
bodyType: "json",
|
|
3288
|
+
});
|
|
3289
|
+
return $tea.cast<CompanyTwoElementsVerificationResponse>(await this.callApi(params, req, runtime), new CompanyTwoElementsVerificationResponse({}));
|
|
3290
|
+
}
|
|
3291
|
+
|
|
3292
|
+
async companyTwoElementsVerification(request: CompanyTwoElementsVerificationRequest): Promise<CompanyTwoElementsVerificationResponse> {
|
|
3293
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
3294
|
+
return await this.companyTwoElementsVerificationWithOptions(request, runtime);
|
|
3295
|
+
}
|
|
3296
|
+
|
|
1727
3297
|
async describeEmptyNumberWithOptions(request: DescribeEmptyNumberRequest, runtime: $Util.RuntimeOptions): Promise<DescribeEmptyNumberResponse> {
|
|
1728
3298
|
Util.validateModel(request);
|
|
1729
3299
|
let query = { };
|
|
@@ -1755,7 +3325,117 @@ export default class Client extends OpenApi {
|
|
|
1755
3325
|
query: OpenApiUtil.query(query),
|
|
1756
3326
|
});
|
|
1757
3327
|
let params = new $OpenApi.Params({
|
|
1758
|
-
action: "DescribeEmptyNumber",
|
|
3328
|
+
action: "DescribeEmptyNumber",
|
|
3329
|
+
version: "2020-02-17",
|
|
3330
|
+
protocol: "HTTPS",
|
|
3331
|
+
pathname: "/",
|
|
3332
|
+
method: "POST",
|
|
3333
|
+
authType: "AK",
|
|
3334
|
+
style: "RPC",
|
|
3335
|
+
reqBodyType: "formData",
|
|
3336
|
+
bodyType: "json",
|
|
3337
|
+
});
|
|
3338
|
+
return $tea.cast<DescribeEmptyNumberResponse>(await this.callApi(params, req, runtime), new DescribeEmptyNumberResponse({}));
|
|
3339
|
+
}
|
|
3340
|
+
|
|
3341
|
+
async describeEmptyNumber(request: DescribeEmptyNumberRequest): Promise<DescribeEmptyNumberResponse> {
|
|
3342
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
3343
|
+
return await this.describeEmptyNumberWithOptions(request, runtime);
|
|
3344
|
+
}
|
|
3345
|
+
|
|
3346
|
+
async describePhoneNumberAnalysisWithOptions(request: DescribePhoneNumberAnalysisRequest, runtime: $Util.RuntimeOptions): Promise<DescribePhoneNumberAnalysisResponse> {
|
|
3347
|
+
Util.validateModel(request);
|
|
3348
|
+
let query = { };
|
|
3349
|
+
if (!Util.isUnset(request.authCode)) {
|
|
3350
|
+
query["AuthCode"] = request.authCode;
|
|
3351
|
+
}
|
|
3352
|
+
|
|
3353
|
+
if (!Util.isUnset(request.inputNumber)) {
|
|
3354
|
+
query["InputNumber"] = request.inputNumber;
|
|
3355
|
+
}
|
|
3356
|
+
|
|
3357
|
+
if (!Util.isUnset(request.mask)) {
|
|
3358
|
+
query["Mask"] = request.mask;
|
|
3359
|
+
}
|
|
3360
|
+
|
|
3361
|
+
if (!Util.isUnset(request.numberType)) {
|
|
3362
|
+
query["NumberType"] = request.numberType;
|
|
3363
|
+
}
|
|
3364
|
+
|
|
3365
|
+
if (!Util.isUnset(request.ownerId)) {
|
|
3366
|
+
query["OwnerId"] = request.ownerId;
|
|
3367
|
+
}
|
|
3368
|
+
|
|
3369
|
+
if (!Util.isUnset(request.rate)) {
|
|
3370
|
+
query["Rate"] = request.rate;
|
|
3371
|
+
}
|
|
3372
|
+
|
|
3373
|
+
if (!Util.isUnset(request.resourceOwnerAccount)) {
|
|
3374
|
+
query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
|
|
3375
|
+
}
|
|
3376
|
+
|
|
3377
|
+
if (!Util.isUnset(request.resourceOwnerId)) {
|
|
3378
|
+
query["ResourceOwnerId"] = request.resourceOwnerId;
|
|
3379
|
+
}
|
|
3380
|
+
|
|
3381
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
3382
|
+
query: OpenApiUtil.query(query),
|
|
3383
|
+
});
|
|
3384
|
+
let params = new $OpenApi.Params({
|
|
3385
|
+
action: "DescribePhoneNumberAnalysis",
|
|
3386
|
+
version: "2020-02-17",
|
|
3387
|
+
protocol: "HTTPS",
|
|
3388
|
+
pathname: "/",
|
|
3389
|
+
method: "POST",
|
|
3390
|
+
authType: "AK",
|
|
3391
|
+
style: "RPC",
|
|
3392
|
+
reqBodyType: "formData",
|
|
3393
|
+
bodyType: "json",
|
|
3394
|
+
});
|
|
3395
|
+
return $tea.cast<DescribePhoneNumberAnalysisResponse>(await this.callApi(params, req, runtime), new DescribePhoneNumberAnalysisResponse({}));
|
|
3396
|
+
}
|
|
3397
|
+
|
|
3398
|
+
async describePhoneNumberAnalysis(request: DescribePhoneNumberAnalysisRequest): Promise<DescribePhoneNumberAnalysisResponse> {
|
|
3399
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
3400
|
+
return await this.describePhoneNumberAnalysisWithOptions(request, runtime);
|
|
3401
|
+
}
|
|
3402
|
+
|
|
3403
|
+
async describePhoneNumberAnalysisAIWithOptions(request: DescribePhoneNumberAnalysisAIRequest, runtime: $Util.RuntimeOptions): Promise<DescribePhoneNumberAnalysisAIResponse> {
|
|
3404
|
+
Util.validateModel(request);
|
|
3405
|
+
let query = { };
|
|
3406
|
+
if (!Util.isUnset(request.authCode)) {
|
|
3407
|
+
query["AuthCode"] = request.authCode;
|
|
3408
|
+
}
|
|
3409
|
+
|
|
3410
|
+
if (!Util.isUnset(request.inputNumber)) {
|
|
3411
|
+
query["InputNumber"] = request.inputNumber;
|
|
3412
|
+
}
|
|
3413
|
+
|
|
3414
|
+
if (!Util.isUnset(request.modelConfig)) {
|
|
3415
|
+
query["ModelConfig"] = request.modelConfig;
|
|
3416
|
+
}
|
|
3417
|
+
|
|
3418
|
+
if (!Util.isUnset(request.ownerId)) {
|
|
3419
|
+
query["OwnerId"] = request.ownerId;
|
|
3420
|
+
}
|
|
3421
|
+
|
|
3422
|
+
if (!Util.isUnset(request.rate)) {
|
|
3423
|
+
query["Rate"] = request.rate;
|
|
3424
|
+
}
|
|
3425
|
+
|
|
3426
|
+
if (!Util.isUnset(request.resourceOwnerAccount)) {
|
|
3427
|
+
query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
|
|
3428
|
+
}
|
|
3429
|
+
|
|
3430
|
+
if (!Util.isUnset(request.resourceOwnerId)) {
|
|
3431
|
+
query["ResourceOwnerId"] = request.resourceOwnerId;
|
|
3432
|
+
}
|
|
3433
|
+
|
|
3434
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
3435
|
+
query: OpenApiUtil.query(query),
|
|
3436
|
+
});
|
|
3437
|
+
let params = new $OpenApi.Params({
|
|
3438
|
+
action: "DescribePhoneNumberAnalysisAI",
|
|
1759
3439
|
version: "2020-02-17",
|
|
1760
3440
|
protocol: "HTTPS",
|
|
1761
3441
|
pathname: "/",
|
|
@@ -1765,39 +3445,23 @@ export default class Client extends OpenApi {
|
|
|
1765
3445
|
reqBodyType: "formData",
|
|
1766
3446
|
bodyType: "json",
|
|
1767
3447
|
});
|
|
1768
|
-
return $tea.cast<
|
|
3448
|
+
return $tea.cast<DescribePhoneNumberAnalysisAIResponse>(await this.callApi(params, req, runtime), new DescribePhoneNumberAnalysisAIResponse({}));
|
|
1769
3449
|
}
|
|
1770
3450
|
|
|
1771
|
-
async
|
|
3451
|
+
async describePhoneNumberAnalysisAI(request: DescribePhoneNumberAnalysisAIRequest): Promise<DescribePhoneNumberAnalysisAIResponse> {
|
|
1772
3452
|
let runtime = new $Util.RuntimeOptions({ });
|
|
1773
|
-
return await this.
|
|
3453
|
+
return await this.describePhoneNumberAnalysisAIWithOptions(request, runtime);
|
|
1774
3454
|
}
|
|
1775
3455
|
|
|
1776
|
-
async
|
|
3456
|
+
async describePhoneNumberAttributeWithOptions(request: DescribePhoneNumberAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribePhoneNumberAttributeResponse> {
|
|
1777
3457
|
Util.validateModel(request);
|
|
1778
3458
|
let query = { };
|
|
1779
|
-
if (!Util.isUnset(request.authCode)) {
|
|
1780
|
-
query["AuthCode"] = request.authCode;
|
|
1781
|
-
}
|
|
1782
|
-
|
|
1783
|
-
if (!Util.isUnset(request.inputNumber)) {
|
|
1784
|
-
query["InputNumber"] = request.inputNumber;
|
|
1785
|
-
}
|
|
1786
|
-
|
|
1787
|
-
if (!Util.isUnset(request.mask)) {
|
|
1788
|
-
query["Mask"] = request.mask;
|
|
1789
|
-
}
|
|
1790
|
-
|
|
1791
|
-
if (!Util.isUnset(request.numberType)) {
|
|
1792
|
-
query["NumberType"] = request.numberType;
|
|
1793
|
-
}
|
|
1794
|
-
|
|
1795
3459
|
if (!Util.isUnset(request.ownerId)) {
|
|
1796
3460
|
query["OwnerId"] = request.ownerId;
|
|
1797
3461
|
}
|
|
1798
3462
|
|
|
1799
|
-
if (!Util.isUnset(request.
|
|
1800
|
-
query["
|
|
3463
|
+
if (!Util.isUnset(request.phoneNumber)) {
|
|
3464
|
+
query["PhoneNumber"] = request.phoneNumber;
|
|
1801
3465
|
}
|
|
1802
3466
|
|
|
1803
3467
|
if (!Util.isUnset(request.resourceOwnerAccount)) {
|
|
@@ -1812,7 +3476,7 @@ export default class Client extends OpenApi {
|
|
|
1812
3476
|
query: OpenApiUtil.query(query),
|
|
1813
3477
|
});
|
|
1814
3478
|
let params = new $OpenApi.Params({
|
|
1815
|
-
action: "
|
|
3479
|
+
action: "DescribePhoneNumberAttribute",
|
|
1816
3480
|
version: "2020-02-17",
|
|
1817
3481
|
protocol: "HTTPS",
|
|
1818
3482
|
pathname: "/",
|
|
@@ -1822,12 +3486,12 @@ export default class Client extends OpenApi {
|
|
|
1822
3486
|
reqBodyType: "formData",
|
|
1823
3487
|
bodyType: "json",
|
|
1824
3488
|
});
|
|
1825
|
-
return $tea.cast<
|
|
3489
|
+
return $tea.cast<DescribePhoneNumberAttributeResponse>(await this.callApi(params, req, runtime), new DescribePhoneNumberAttributeResponse({}));
|
|
1826
3490
|
}
|
|
1827
3491
|
|
|
1828
|
-
async
|
|
3492
|
+
async describePhoneNumberAttribute(request: DescribePhoneNumberAttributeRequest): Promise<DescribePhoneNumberAttributeResponse> {
|
|
1829
3493
|
let runtime = new $Util.RuntimeOptions({ });
|
|
1830
|
-
return await this.
|
|
3494
|
+
return await this.describePhoneNumberAttributeWithOptions(request, runtime);
|
|
1831
3495
|
}
|
|
1832
3496
|
|
|
1833
3497
|
async describePhoneNumberOnlineTimeWithOptions(request: DescribePhoneNumberOnlineTimeRequest, runtime: $Util.RuntimeOptions): Promise<DescribePhoneNumberOnlineTimeResponse> {
|
|
@@ -2034,6 +3698,55 @@ export default class Client extends OpenApi {
|
|
|
2034
3698
|
return await this.invalidPhoneNumberFilterWithOptions(request, runtime);
|
|
2035
3699
|
}
|
|
2036
3700
|
|
|
3701
|
+
async phoneNumberConvertServiceWithOptions(request: PhoneNumberConvertServiceRequest, runtime: $Util.RuntimeOptions): Promise<PhoneNumberConvertServiceResponse> {
|
|
3702
|
+
Util.validateModel(request);
|
|
3703
|
+
let query = { };
|
|
3704
|
+
if (!Util.isUnset(request.authCode)) {
|
|
3705
|
+
query["AuthCode"] = request.authCode;
|
|
3706
|
+
}
|
|
3707
|
+
|
|
3708
|
+
if (!Util.isUnset(request.inputNumber)) {
|
|
3709
|
+
query["InputNumber"] = request.inputNumber;
|
|
3710
|
+
}
|
|
3711
|
+
|
|
3712
|
+
if (!Util.isUnset(request.mask)) {
|
|
3713
|
+
query["Mask"] = request.mask;
|
|
3714
|
+
}
|
|
3715
|
+
|
|
3716
|
+
if (!Util.isUnset(request.ownerId)) {
|
|
3717
|
+
query["OwnerId"] = request.ownerId;
|
|
3718
|
+
}
|
|
3719
|
+
|
|
3720
|
+
if (!Util.isUnset(request.resourceOwnerAccount)) {
|
|
3721
|
+
query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
|
|
3722
|
+
}
|
|
3723
|
+
|
|
3724
|
+
if (!Util.isUnset(request.resourceOwnerId)) {
|
|
3725
|
+
query["ResourceOwnerId"] = request.resourceOwnerId;
|
|
3726
|
+
}
|
|
3727
|
+
|
|
3728
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
3729
|
+
query: OpenApiUtil.query(query),
|
|
3730
|
+
});
|
|
3731
|
+
let params = new $OpenApi.Params({
|
|
3732
|
+
action: "PhoneNumberConvertService",
|
|
3733
|
+
version: "2020-02-17",
|
|
3734
|
+
protocol: "HTTPS",
|
|
3735
|
+
pathname: "/",
|
|
3736
|
+
method: "POST",
|
|
3737
|
+
authType: "AK",
|
|
3738
|
+
style: "RPC",
|
|
3739
|
+
reqBodyType: "formData",
|
|
3740
|
+
bodyType: "json",
|
|
3741
|
+
});
|
|
3742
|
+
return $tea.cast<PhoneNumberConvertServiceResponse>(await this.callApi(params, req, runtime), new PhoneNumberConvertServiceResponse({}));
|
|
3743
|
+
}
|
|
3744
|
+
|
|
3745
|
+
async phoneNumberConvertService(request: PhoneNumberConvertServiceRequest): Promise<PhoneNumberConvertServiceResponse> {
|
|
3746
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
3747
|
+
return await this.phoneNumberConvertServiceWithOptions(request, runtime);
|
|
3748
|
+
}
|
|
3749
|
+
|
|
2037
3750
|
async phoneNumberEncryptWithOptions(request: PhoneNumberEncryptRequest, runtime: $Util.RuntimeOptions): Promise<PhoneNumberEncryptResponse> {
|
|
2038
3751
|
Util.validateModel(request);
|
|
2039
3752
|
let query = { };
|
|
@@ -2377,6 +4090,239 @@ export default class Client extends OpenApi {
|
|
|
2377
4090
|
return await this.phoneNumberStatusForVoiceWithOptions(request, runtime);
|
|
2378
4091
|
}
|
|
2379
4092
|
|
|
4093
|
+
async queryAvailableAuthCodeWithOptions(request: QueryAvailableAuthCodeRequest, runtime: $Util.RuntimeOptions): Promise<QueryAvailableAuthCodeResponse> {
|
|
4094
|
+
Util.validateModel(request);
|
|
4095
|
+
let query = { };
|
|
4096
|
+
if (!Util.isUnset(request.ownerId)) {
|
|
4097
|
+
query["OwnerId"] = request.ownerId;
|
|
4098
|
+
}
|
|
4099
|
+
|
|
4100
|
+
if (!Util.isUnset(request.resourceOwnerAccount)) {
|
|
4101
|
+
query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
|
|
4102
|
+
}
|
|
4103
|
+
|
|
4104
|
+
if (!Util.isUnset(request.resourceOwnerId)) {
|
|
4105
|
+
query["ResourceOwnerId"] = request.resourceOwnerId;
|
|
4106
|
+
}
|
|
4107
|
+
|
|
4108
|
+
if (!Util.isUnset(request.tagId)) {
|
|
4109
|
+
query["TagId"] = request.tagId;
|
|
4110
|
+
}
|
|
4111
|
+
|
|
4112
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
4113
|
+
query: OpenApiUtil.query(query),
|
|
4114
|
+
});
|
|
4115
|
+
let params = new $OpenApi.Params({
|
|
4116
|
+
action: "QueryAvailableAuthCode",
|
|
4117
|
+
version: "2020-02-17",
|
|
4118
|
+
protocol: "HTTPS",
|
|
4119
|
+
pathname: "/",
|
|
4120
|
+
method: "POST",
|
|
4121
|
+
authType: "AK",
|
|
4122
|
+
style: "RPC",
|
|
4123
|
+
reqBodyType: "formData",
|
|
4124
|
+
bodyType: "json",
|
|
4125
|
+
});
|
|
4126
|
+
return $tea.cast<QueryAvailableAuthCodeResponse>(await this.callApi(params, req, runtime), new QueryAvailableAuthCodeResponse({}));
|
|
4127
|
+
}
|
|
4128
|
+
|
|
4129
|
+
async queryAvailableAuthCode(request: QueryAvailableAuthCodeRequest): Promise<QueryAvailableAuthCodeResponse> {
|
|
4130
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
4131
|
+
return await this.queryAvailableAuthCodeWithOptions(request, runtime);
|
|
4132
|
+
}
|
|
4133
|
+
|
|
4134
|
+
async queryTagApplyRuleWithOptions(request: QueryTagApplyRuleRequest, runtime: $Util.RuntimeOptions): Promise<QueryTagApplyRuleResponse> {
|
|
4135
|
+
Util.validateModel(request);
|
|
4136
|
+
let query = { };
|
|
4137
|
+
if (!Util.isUnset(request.ownerId)) {
|
|
4138
|
+
query["OwnerId"] = request.ownerId;
|
|
4139
|
+
}
|
|
4140
|
+
|
|
4141
|
+
if (!Util.isUnset(request.resourceOwnerAccount)) {
|
|
4142
|
+
query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
|
|
4143
|
+
}
|
|
4144
|
+
|
|
4145
|
+
if (!Util.isUnset(request.resourceOwnerId)) {
|
|
4146
|
+
query["ResourceOwnerId"] = request.resourceOwnerId;
|
|
4147
|
+
}
|
|
4148
|
+
|
|
4149
|
+
if (!Util.isUnset(request.tagId)) {
|
|
4150
|
+
query["TagId"] = request.tagId;
|
|
4151
|
+
}
|
|
4152
|
+
|
|
4153
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
4154
|
+
query: OpenApiUtil.query(query),
|
|
4155
|
+
});
|
|
4156
|
+
let params = new $OpenApi.Params({
|
|
4157
|
+
action: "QueryTagApplyRule",
|
|
4158
|
+
version: "2020-02-17",
|
|
4159
|
+
protocol: "HTTPS",
|
|
4160
|
+
pathname: "/",
|
|
4161
|
+
method: "POST",
|
|
4162
|
+
authType: "AK",
|
|
4163
|
+
style: "RPC",
|
|
4164
|
+
reqBodyType: "formData",
|
|
4165
|
+
bodyType: "json",
|
|
4166
|
+
});
|
|
4167
|
+
return $tea.cast<QueryTagApplyRuleResponse>(await this.callApi(params, req, runtime), new QueryTagApplyRuleResponse({}));
|
|
4168
|
+
}
|
|
4169
|
+
|
|
4170
|
+
async queryTagApplyRule(request: QueryTagApplyRuleRequest): Promise<QueryTagApplyRuleResponse> {
|
|
4171
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
4172
|
+
return await this.queryTagApplyRuleWithOptions(request, runtime);
|
|
4173
|
+
}
|
|
4174
|
+
|
|
4175
|
+
async queryTagInfoBySelectionWithOptions(request: QueryTagInfoBySelectionRequest, runtime: $Util.RuntimeOptions): Promise<QueryTagInfoBySelectionResponse> {
|
|
4176
|
+
Util.validateModel(request);
|
|
4177
|
+
let query = { };
|
|
4178
|
+
if (!Util.isUnset(request.industryId)) {
|
|
4179
|
+
query["IndustryId"] = request.industryId;
|
|
4180
|
+
}
|
|
4181
|
+
|
|
4182
|
+
if (!Util.isUnset(request.ownerId)) {
|
|
4183
|
+
query["OwnerId"] = request.ownerId;
|
|
4184
|
+
}
|
|
4185
|
+
|
|
4186
|
+
if (!Util.isUnset(request.resourceOwnerAccount)) {
|
|
4187
|
+
query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
|
|
4188
|
+
}
|
|
4189
|
+
|
|
4190
|
+
if (!Util.isUnset(request.resourceOwnerId)) {
|
|
4191
|
+
query["ResourceOwnerId"] = request.resourceOwnerId;
|
|
4192
|
+
}
|
|
4193
|
+
|
|
4194
|
+
if (!Util.isUnset(request.sceneId)) {
|
|
4195
|
+
query["SceneId"] = request.sceneId;
|
|
4196
|
+
}
|
|
4197
|
+
|
|
4198
|
+
if (!Util.isUnset(request.tagId)) {
|
|
4199
|
+
query["TagId"] = request.tagId;
|
|
4200
|
+
}
|
|
4201
|
+
|
|
4202
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
4203
|
+
query: OpenApiUtil.query(query),
|
|
4204
|
+
});
|
|
4205
|
+
let params = new $OpenApi.Params({
|
|
4206
|
+
action: "QueryTagInfoBySelection",
|
|
4207
|
+
version: "2020-02-17",
|
|
4208
|
+
protocol: "HTTPS",
|
|
4209
|
+
pathname: "/",
|
|
4210
|
+
method: "POST",
|
|
4211
|
+
authType: "AK",
|
|
4212
|
+
style: "RPC",
|
|
4213
|
+
reqBodyType: "formData",
|
|
4214
|
+
bodyType: "json",
|
|
4215
|
+
});
|
|
4216
|
+
return $tea.cast<QueryTagInfoBySelectionResponse>(await this.callApi(params, req, runtime), new QueryTagInfoBySelectionResponse({}));
|
|
4217
|
+
}
|
|
4218
|
+
|
|
4219
|
+
async queryTagInfoBySelection(request: QueryTagInfoBySelectionRequest): Promise<QueryTagInfoBySelectionResponse> {
|
|
4220
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
4221
|
+
return await this.queryTagInfoBySelectionWithOptions(request, runtime);
|
|
4222
|
+
}
|
|
4223
|
+
|
|
4224
|
+
async queryTagListPageWithOptions(request: QueryTagListPageRequest, runtime: $Util.RuntimeOptions): Promise<QueryTagListPageResponse> {
|
|
4225
|
+
Util.validateModel(request);
|
|
4226
|
+
let query = { };
|
|
4227
|
+
if (!Util.isUnset(request.ownerId)) {
|
|
4228
|
+
query["OwnerId"] = request.ownerId;
|
|
4229
|
+
}
|
|
4230
|
+
|
|
4231
|
+
if (!Util.isUnset(request.pageNo)) {
|
|
4232
|
+
query["PageNo"] = request.pageNo;
|
|
4233
|
+
}
|
|
4234
|
+
|
|
4235
|
+
if (!Util.isUnset(request.pageSize)) {
|
|
4236
|
+
query["PageSize"] = request.pageSize;
|
|
4237
|
+
}
|
|
4238
|
+
|
|
4239
|
+
if (!Util.isUnset(request.resourceOwnerAccount)) {
|
|
4240
|
+
query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
|
|
4241
|
+
}
|
|
4242
|
+
|
|
4243
|
+
if (!Util.isUnset(request.resourceOwnerId)) {
|
|
4244
|
+
query["ResourceOwnerId"] = request.resourceOwnerId;
|
|
4245
|
+
}
|
|
4246
|
+
|
|
4247
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
4248
|
+
query: OpenApiUtil.query(query),
|
|
4249
|
+
});
|
|
4250
|
+
let params = new $OpenApi.Params({
|
|
4251
|
+
action: "QueryTagListPage",
|
|
4252
|
+
version: "2020-02-17",
|
|
4253
|
+
protocol: "HTTPS",
|
|
4254
|
+
pathname: "/",
|
|
4255
|
+
method: "POST",
|
|
4256
|
+
authType: "AK",
|
|
4257
|
+
style: "RPC",
|
|
4258
|
+
reqBodyType: "formData",
|
|
4259
|
+
bodyType: "json",
|
|
4260
|
+
});
|
|
4261
|
+
return $tea.cast<QueryTagListPageResponse>(await this.callApi(params, req, runtime), new QueryTagListPageResponse({}));
|
|
4262
|
+
}
|
|
4263
|
+
|
|
4264
|
+
async queryTagListPage(request: QueryTagListPageRequest): Promise<QueryTagListPageResponse> {
|
|
4265
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
4266
|
+
return await this.queryTagListPageWithOptions(request, runtime);
|
|
4267
|
+
}
|
|
4268
|
+
|
|
4269
|
+
async queryUsageStatisticsByTagIdWithOptions(request: QueryUsageStatisticsByTagIdRequest, runtime: $Util.RuntimeOptions): Promise<QueryUsageStatisticsByTagIdResponse> {
|
|
4270
|
+
Util.validateModel(request);
|
|
4271
|
+
let query = { };
|
|
4272
|
+
if (!Util.isUnset(request.beginTime)) {
|
|
4273
|
+
query["BeginTime"] = request.beginTime;
|
|
4274
|
+
}
|
|
4275
|
+
|
|
4276
|
+
if (!Util.isUnset(request.endTime)) {
|
|
4277
|
+
query["EndTime"] = request.endTime;
|
|
4278
|
+
}
|
|
4279
|
+
|
|
4280
|
+
if (!Util.isUnset(request.ownerId)) {
|
|
4281
|
+
query["OwnerId"] = request.ownerId;
|
|
4282
|
+
}
|
|
4283
|
+
|
|
4284
|
+
if (!Util.isUnset(request.pageNo)) {
|
|
4285
|
+
query["PageNo"] = request.pageNo;
|
|
4286
|
+
}
|
|
4287
|
+
|
|
4288
|
+
if (!Util.isUnset(request.pageSize)) {
|
|
4289
|
+
query["PageSize"] = request.pageSize;
|
|
4290
|
+
}
|
|
4291
|
+
|
|
4292
|
+
if (!Util.isUnset(request.resourceOwnerAccount)) {
|
|
4293
|
+
query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
|
|
4294
|
+
}
|
|
4295
|
+
|
|
4296
|
+
if (!Util.isUnset(request.resourceOwnerId)) {
|
|
4297
|
+
query["ResourceOwnerId"] = request.resourceOwnerId;
|
|
4298
|
+
}
|
|
4299
|
+
|
|
4300
|
+
if (!Util.isUnset(request.tagId)) {
|
|
4301
|
+
query["TagId"] = request.tagId;
|
|
4302
|
+
}
|
|
4303
|
+
|
|
4304
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
4305
|
+
query: OpenApiUtil.query(query),
|
|
4306
|
+
});
|
|
4307
|
+
let params = new $OpenApi.Params({
|
|
4308
|
+
action: "QueryUsageStatisticsByTagId",
|
|
4309
|
+
version: "2020-02-17",
|
|
4310
|
+
protocol: "HTTPS",
|
|
4311
|
+
pathname: "/",
|
|
4312
|
+
method: "POST",
|
|
4313
|
+
authType: "AK",
|
|
4314
|
+
style: "RPC",
|
|
4315
|
+
reqBodyType: "formData",
|
|
4316
|
+
bodyType: "json",
|
|
4317
|
+
});
|
|
4318
|
+
return $tea.cast<QueryUsageStatisticsByTagIdResponse>(await this.callApi(params, req, runtime), new QueryUsageStatisticsByTagIdResponse({}));
|
|
4319
|
+
}
|
|
4320
|
+
|
|
4321
|
+
async queryUsageStatisticsByTagId(request: QueryUsageStatisticsByTagIdRequest): Promise<QueryUsageStatisticsByTagIdResponse> {
|
|
4322
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
4323
|
+
return await this.queryUsageStatisticsByTagIdWithOptions(request, runtime);
|
|
4324
|
+
}
|
|
4325
|
+
|
|
2380
4326
|
async threeElementsVerificationWithOptions(request: ThreeElementsVerificationRequest, runtime: $Util.RuntimeOptions): Promise<ThreeElementsVerificationResponse> {
|
|
2381
4327
|
Util.validateModel(request);
|
|
2382
4328
|
let query = { };
|