@alicloud/dytnsapi20200217 2.7.0 → 2.8.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/src/client.ts CHANGED
@@ -595,12 +595,14 @@ export class DescribePhoneNumberAnalysisAIRequest extends $tea.Model {
595
595
  }
596
596
 
597
597
  export class DescribePhoneNumberAnalysisAIResponseBody extends $tea.Model {
598
+ accessDeniedDetail?: string;
598
599
  code?: string;
599
600
  data?: DescribePhoneNumberAnalysisAIResponseBodyData;
600
601
  message?: string;
601
602
  requestId?: string;
602
603
  static names(): { [key: string]: string } {
603
604
  return {
605
+ accessDeniedDetail: 'AccessDeniedDetail',
604
606
  code: 'Code',
605
607
  data: 'Data',
606
608
  message: 'Message',
@@ -610,6 +612,7 @@ export class DescribePhoneNumberAnalysisAIResponseBody extends $tea.Model {
610
612
 
611
613
  static types(): { [key: string]: any } {
612
614
  return {
615
+ accessDeniedDetail: 'string',
613
616
  code: 'string',
614
617
  data: DescribePhoneNumberAnalysisAIResponseBodyData,
615
618
  message: 'string',
@@ -1283,6 +1286,111 @@ export class GetUAIDApplyTokenSignResponse extends $tea.Model {
1283
1286
  }
1284
1287
  }
1285
1288
 
1289
+ export class GetUAIDConversionSignRequest extends $tea.Model {
1290
+ authCode?: string;
1291
+ carrier?: string;
1292
+ clientType?: string;
1293
+ format?: string;
1294
+ outId?: string;
1295
+ ownerId?: number;
1296
+ paramKey?: string;
1297
+ paramStr?: string;
1298
+ resourceOwnerAccount?: string;
1299
+ resourceOwnerId?: number;
1300
+ time?: string;
1301
+ static names(): { [key: string]: string } {
1302
+ return {
1303
+ authCode: 'AuthCode',
1304
+ carrier: 'Carrier',
1305
+ clientType: 'ClientType',
1306
+ format: 'Format',
1307
+ outId: 'OutId',
1308
+ ownerId: 'OwnerId',
1309
+ paramKey: 'ParamKey',
1310
+ paramStr: 'ParamStr',
1311
+ resourceOwnerAccount: 'ResourceOwnerAccount',
1312
+ resourceOwnerId: 'ResourceOwnerId',
1313
+ time: 'Time',
1314
+ };
1315
+ }
1316
+
1317
+ static types(): { [key: string]: any } {
1318
+ return {
1319
+ authCode: 'string',
1320
+ carrier: 'string',
1321
+ clientType: 'string',
1322
+ format: 'string',
1323
+ outId: 'string',
1324
+ ownerId: 'number',
1325
+ paramKey: 'string',
1326
+ paramStr: 'string',
1327
+ resourceOwnerAccount: 'string',
1328
+ resourceOwnerId: 'number',
1329
+ time: 'string',
1330
+ };
1331
+ }
1332
+
1333
+ constructor(map?: { [key: string]: any }) {
1334
+ super(map);
1335
+ }
1336
+ }
1337
+
1338
+ export class GetUAIDConversionSignResponseBody extends $tea.Model {
1339
+ accessDeniedDetail?: string;
1340
+ code?: string;
1341
+ data?: GetUAIDConversionSignResponseBodyData;
1342
+ message?: string;
1343
+ requestId?: string;
1344
+ static names(): { [key: string]: string } {
1345
+ return {
1346
+ accessDeniedDetail: 'AccessDeniedDetail',
1347
+ code: 'Code',
1348
+ data: 'Data',
1349
+ message: 'Message',
1350
+ requestId: 'RequestId',
1351
+ };
1352
+ }
1353
+
1354
+ static types(): { [key: string]: any } {
1355
+ return {
1356
+ accessDeniedDetail: 'string',
1357
+ code: 'string',
1358
+ data: GetUAIDConversionSignResponseBodyData,
1359
+ message: 'string',
1360
+ requestId: 'string',
1361
+ };
1362
+ }
1363
+
1364
+ constructor(map?: { [key: string]: any }) {
1365
+ super(map);
1366
+ }
1367
+ }
1368
+
1369
+ export class GetUAIDConversionSignResponse extends $tea.Model {
1370
+ headers?: { [key: string]: string };
1371
+ statusCode?: number;
1372
+ body?: GetUAIDConversionSignResponseBody;
1373
+ static names(): { [key: string]: string } {
1374
+ return {
1375
+ headers: 'headers',
1376
+ statusCode: 'statusCode',
1377
+ body: 'body',
1378
+ };
1379
+ }
1380
+
1381
+ static types(): { [key: string]: any } {
1382
+ return {
1383
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
1384
+ statusCode: 'number',
1385
+ body: GetUAIDConversionSignResponseBody,
1386
+ };
1387
+ }
1388
+
1389
+ constructor(map?: { [key: string]: any }) {
1390
+ super(map);
1391
+ }
1392
+ }
1393
+
1286
1394
  export class InvalidPhoneNumberFilterRequest extends $tea.Model {
1287
1395
  authCode?: string;
1288
1396
  inputNumber?: string;
@@ -2873,7 +2981,7 @@ export class TwoElementsVerificationResponse extends $tea.Model {
2873
2981
  }
2874
2982
  }
2875
2983
 
2876
- export class UAIDVerificationRequest extends $tea.Model {
2984
+ export class UAIDCollectionRequest extends $tea.Model {
2877
2985
  authCode?: string;
2878
2986
  carrier?: string;
2879
2987
  ip?: string;
@@ -2919,18 +3027,18 @@ export class UAIDVerificationRequest extends $tea.Model {
2919
3027
  }
2920
3028
  }
2921
3029
 
2922
- export class UAIDVerificationResponseBody extends $tea.Model {
3030
+ export class UAIDCollectionResponseBody extends $tea.Model {
2923
3031
  accessDeniedDetail?: string;
2924
3032
  code?: string;
2925
- data?: UAIDVerificationResponseBodyData;
2926
3033
  message?: string;
3034
+ model?: UAIDCollectionResponseBodyModel;
2927
3035
  requestId?: string;
2928
3036
  static names(): { [key: string]: string } {
2929
3037
  return {
2930
3038
  accessDeniedDetail: 'AccessDeniedDetail',
2931
3039
  code: 'Code',
2932
- data: 'Data',
2933
3040
  message: 'Message',
3041
+ model: 'Model',
2934
3042
  requestId: 'RequestId',
2935
3043
  };
2936
3044
  }
@@ -2939,8 +3047,8 @@ export class UAIDVerificationResponseBody extends $tea.Model {
2939
3047
  return {
2940
3048
  accessDeniedDetail: 'string',
2941
3049
  code: 'string',
2942
- data: UAIDVerificationResponseBodyData,
2943
3050
  message: 'string',
3051
+ model: UAIDCollectionResponseBodyModel,
2944
3052
  requestId: 'string',
2945
3053
  };
2946
3054
  }
@@ -2950,10 +3058,10 @@ export class UAIDVerificationResponseBody extends $tea.Model {
2950
3058
  }
2951
3059
  }
2952
3060
 
2953
- export class UAIDVerificationResponse extends $tea.Model {
3061
+ export class UAIDCollectionResponse extends $tea.Model {
2954
3062
  headers?: { [key: string]: string };
2955
3063
  statusCode?: number;
2956
- body?: UAIDVerificationResponseBody;
3064
+ body?: UAIDCollectionResponseBody;
2957
3065
  static names(): { [key: string]: string } {
2958
3066
  return {
2959
3067
  headers: 'headers',
@@ -2966,7 +3074,7 @@ export class UAIDVerificationResponse extends $tea.Model {
2966
3074
  return {
2967
3075
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
2968
3076
  statusCode: 'number',
2969
- body: UAIDVerificationResponseBody,
3077
+ body: UAIDCollectionResponseBody,
2970
3078
  };
2971
3079
  }
2972
3080
 
@@ -2975,17 +3083,35 @@ export class UAIDVerificationResponse extends $tea.Model {
2975
3083
  }
2976
3084
  }
2977
3085
 
2978
- export class CertNoTwoElementVerificationResponseBodyData extends $tea.Model {
2979
- isConsistent?: string;
3086
+ export class UAIDConversionRequest extends $tea.Model {
3087
+ authCode?: string;
3088
+ carrier?: string;
3089
+ outId?: string;
3090
+ ownerId?: number;
3091
+ resourceOwnerAccount?: string;
3092
+ resourceOwnerId?: number;
3093
+ uaidList?: string;
2980
3094
  static names(): { [key: string]: string } {
2981
3095
  return {
2982
- isConsistent: 'IsConsistent',
3096
+ authCode: 'AuthCode',
3097
+ carrier: 'Carrier',
3098
+ outId: 'OutId',
3099
+ ownerId: 'OwnerId',
3100
+ resourceOwnerAccount: 'ResourceOwnerAccount',
3101
+ resourceOwnerId: 'ResourceOwnerId',
3102
+ uaidList: 'UaidList',
2983
3103
  };
2984
3104
  }
2985
3105
 
2986
3106
  static types(): { [key: string]: any } {
2987
3107
  return {
2988
- isConsistent: 'string',
3108
+ authCode: 'string',
3109
+ carrier: 'string',
3110
+ outId: 'string',
3111
+ ownerId: 'number',
3112
+ resourceOwnerAccount: 'string',
3113
+ resourceOwnerId: 'number',
3114
+ uaidList: 'string',
2989
3115
  };
2990
3116
  }
2991
3117
 
@@ -2994,20 +3120,29 @@ export class CertNoTwoElementVerificationResponseBodyData extends $tea.Model {
2994
3120
  }
2995
3121
  }
2996
3122
 
2997
- export class CompanyFourElementsVerificationResponseBodyDataDetailInfo extends $tea.Model {
2998
- enterpriseStatus?: string;
2999
- openTime?: string;
3123
+ export class UAIDConversionResponseBody extends $tea.Model {
3124
+ accessDeniedDetail?: string;
3125
+ code?: string;
3126
+ message?: string;
3127
+ model?: UAIDConversionResponseBodyModel;
3128
+ requestId?: string;
3000
3129
  static names(): { [key: string]: string } {
3001
3130
  return {
3002
- enterpriseStatus: 'EnterpriseStatus',
3003
- openTime: 'OpenTime',
3131
+ accessDeniedDetail: 'AccessDeniedDetail',
3132
+ code: 'Code',
3133
+ message: 'Message',
3134
+ model: 'Model',
3135
+ requestId: 'RequestId',
3004
3136
  };
3005
3137
  }
3006
3138
 
3007
3139
  static types(): { [key: string]: any } {
3008
3140
  return {
3009
- enterpriseStatus: 'string',
3010
- openTime: 'string',
3141
+ accessDeniedDetail: 'string',
3142
+ code: 'string',
3143
+ message: 'string',
3144
+ model: UAIDConversionResponseBodyModel,
3145
+ requestId: 'string',
3011
3146
  };
3012
3147
  }
3013
3148
 
@@ -3016,26 +3151,23 @@ export class CompanyFourElementsVerificationResponseBodyDataDetailInfo extends $
3016
3151
  }
3017
3152
  }
3018
3153
 
3019
- export class CompanyFourElementsVerificationResponseBodyData extends $tea.Model {
3020
- detailInfo?: CompanyFourElementsVerificationResponseBodyDataDetailInfo;
3021
- inconsistentData?: string[];
3022
- reasonCode?: number;
3023
- verifyResult?: string;
3154
+ export class UAIDConversionResponse extends $tea.Model {
3155
+ headers?: { [key: string]: string };
3156
+ statusCode?: number;
3157
+ body?: UAIDConversionResponseBody;
3024
3158
  static names(): { [key: string]: string } {
3025
3159
  return {
3026
- detailInfo: 'DetailInfo',
3027
- inconsistentData: 'InconsistentData',
3028
- reasonCode: 'ReasonCode',
3029
- verifyResult: 'VerifyResult',
3160
+ headers: 'headers',
3161
+ statusCode: 'statusCode',
3162
+ body: 'body',
3030
3163
  };
3031
3164
  }
3032
3165
 
3033
3166
  static types(): { [key: string]: any } {
3034
3167
  return {
3035
- detailInfo: CompanyFourElementsVerificationResponseBodyDataDetailInfo,
3036
- inconsistentData: { 'type': 'array', 'itemType': 'string' },
3037
- reasonCode: 'number',
3038
- verifyResult: 'string',
3168
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
3169
+ statusCode: 'number',
3170
+ body: UAIDConversionResponseBody,
3039
3171
  };
3040
3172
  }
3041
3173
 
@@ -3044,20 +3176,44 @@ export class CompanyFourElementsVerificationResponseBodyData extends $tea.Model
3044
3176
  }
3045
3177
  }
3046
3178
 
3047
- export class CompanyThreeElementsVerificationResponseBodyDataDetailInfo extends $tea.Model {
3048
- enterpriseStatus?: string;
3049
- openTime?: string;
3179
+ export class UAIDVerificationRequest extends $tea.Model {
3180
+ authCode?: string;
3181
+ carrier?: string;
3182
+ ip?: string;
3183
+ outId?: string;
3184
+ ownerId?: number;
3185
+ province?: string;
3186
+ resourceOwnerAccount?: string;
3187
+ resourceOwnerId?: number;
3188
+ token?: string;
3189
+ userGrantId?: string;
3050
3190
  static names(): { [key: string]: string } {
3051
3191
  return {
3052
- enterpriseStatus: 'EnterpriseStatus',
3053
- openTime: 'OpenTime',
3192
+ authCode: 'AuthCode',
3193
+ carrier: 'Carrier',
3194
+ ip: 'Ip',
3195
+ outId: 'OutId',
3196
+ ownerId: 'OwnerId',
3197
+ province: 'Province',
3198
+ resourceOwnerAccount: 'ResourceOwnerAccount',
3199
+ resourceOwnerId: 'ResourceOwnerId',
3200
+ token: 'Token',
3201
+ userGrantId: 'UserGrantId',
3054
3202
  };
3055
3203
  }
3056
3204
 
3057
3205
  static types(): { [key: string]: any } {
3058
3206
  return {
3059
- enterpriseStatus: 'string',
3060
- openTime: 'string',
3207
+ authCode: 'string',
3208
+ carrier: 'string',
3209
+ ip: 'string',
3210
+ outId: 'string',
3211
+ ownerId: 'number',
3212
+ province: 'string',
3213
+ resourceOwnerAccount: 'string',
3214
+ resourceOwnerId: 'number',
3215
+ token: 'string',
3216
+ userGrantId: 'string',
3061
3217
  };
3062
3218
  }
3063
3219
 
@@ -3066,26 +3222,29 @@ export class CompanyThreeElementsVerificationResponseBodyDataDetailInfo extends
3066
3222
  }
3067
3223
  }
3068
3224
 
3069
- export class CompanyThreeElementsVerificationResponseBodyData extends $tea.Model {
3070
- detailInfo?: CompanyThreeElementsVerificationResponseBodyDataDetailInfo;
3071
- inconsistentData?: string[];
3072
- reasonCode?: number;
3073
- verifyResult?: string;
3225
+ export class UAIDVerificationResponseBody extends $tea.Model {
3226
+ accessDeniedDetail?: string;
3227
+ code?: string;
3228
+ data?: UAIDVerificationResponseBodyData;
3229
+ message?: string;
3230
+ requestId?: string;
3074
3231
  static names(): { [key: string]: string } {
3075
3232
  return {
3076
- detailInfo: 'DetailInfo',
3077
- inconsistentData: 'InconsistentData',
3078
- reasonCode: 'ReasonCode',
3079
- verifyResult: 'VerifyResult',
3233
+ accessDeniedDetail: 'AccessDeniedDetail',
3234
+ code: 'Code',
3235
+ data: 'Data',
3236
+ message: 'Message',
3237
+ requestId: 'RequestId',
3080
3238
  };
3081
3239
  }
3082
3240
 
3083
3241
  static types(): { [key: string]: any } {
3084
3242
  return {
3085
- detailInfo: CompanyThreeElementsVerificationResponseBodyDataDetailInfo,
3086
- inconsistentData: { 'type': 'array', 'itemType': 'string' },
3087
- reasonCode: 'number',
3088
- verifyResult: 'string',
3243
+ accessDeniedDetail: 'string',
3244
+ code: 'string',
3245
+ data: UAIDVerificationResponseBodyData,
3246
+ message: 'string',
3247
+ requestId: 'string',
3089
3248
  };
3090
3249
  }
3091
3250
 
@@ -3094,20 +3253,23 @@ export class CompanyThreeElementsVerificationResponseBodyData extends $tea.Model
3094
3253
  }
3095
3254
  }
3096
3255
 
3097
- export class CompanyTwoElementsVerificationResponseBodyDataDetailInfo extends $tea.Model {
3098
- enterpriseStatus?: string;
3099
- openTime?: string;
3256
+ export class UAIDVerificationResponse extends $tea.Model {
3257
+ headers?: { [key: string]: string };
3258
+ statusCode?: number;
3259
+ body?: UAIDVerificationResponseBody;
3100
3260
  static names(): { [key: string]: string } {
3101
3261
  return {
3102
- enterpriseStatus: 'EnterpriseStatus',
3103
- openTime: 'OpenTime',
3262
+ headers: 'headers',
3263
+ statusCode: 'statusCode',
3264
+ body: 'body',
3104
3265
  };
3105
3266
  }
3106
3267
 
3107
3268
  static types(): { [key: string]: any } {
3108
3269
  return {
3109
- enterpriseStatus: 'string',
3110
- openTime: 'string',
3270
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
3271
+ statusCode: 'number',
3272
+ body: UAIDVerificationResponseBody,
3111
3273
  };
3112
3274
  }
3113
3275
 
@@ -3116,8 +3278,149 @@ export class CompanyTwoElementsVerificationResponseBodyDataDetailInfo extends $t
3116
3278
  }
3117
3279
  }
3118
3280
 
3119
- export class CompanyTwoElementsVerificationResponseBodyData extends $tea.Model {
3120
- detailInfo?: CompanyTwoElementsVerificationResponseBodyDataDetailInfo;
3281
+ export class CertNoTwoElementVerificationResponseBodyData extends $tea.Model {
3282
+ isConsistent?: string;
3283
+ static names(): { [key: string]: string } {
3284
+ return {
3285
+ isConsistent: 'IsConsistent',
3286
+ };
3287
+ }
3288
+
3289
+ static types(): { [key: string]: any } {
3290
+ return {
3291
+ isConsistent: 'string',
3292
+ };
3293
+ }
3294
+
3295
+ constructor(map?: { [key: string]: any }) {
3296
+ super(map);
3297
+ }
3298
+ }
3299
+
3300
+ export class CompanyFourElementsVerificationResponseBodyDataDetailInfo extends $tea.Model {
3301
+ enterpriseStatus?: string;
3302
+ openTime?: string;
3303
+ static names(): { [key: string]: string } {
3304
+ return {
3305
+ enterpriseStatus: 'EnterpriseStatus',
3306
+ openTime: 'OpenTime',
3307
+ };
3308
+ }
3309
+
3310
+ static types(): { [key: string]: any } {
3311
+ return {
3312
+ enterpriseStatus: 'string',
3313
+ openTime: 'string',
3314
+ };
3315
+ }
3316
+
3317
+ constructor(map?: { [key: string]: any }) {
3318
+ super(map);
3319
+ }
3320
+ }
3321
+
3322
+ export class CompanyFourElementsVerificationResponseBodyData extends $tea.Model {
3323
+ detailInfo?: CompanyFourElementsVerificationResponseBodyDataDetailInfo;
3324
+ inconsistentData?: string[];
3325
+ reasonCode?: number;
3326
+ verifyResult?: string;
3327
+ static names(): { [key: string]: string } {
3328
+ return {
3329
+ detailInfo: 'DetailInfo',
3330
+ inconsistentData: 'InconsistentData',
3331
+ reasonCode: 'ReasonCode',
3332
+ verifyResult: 'VerifyResult',
3333
+ };
3334
+ }
3335
+
3336
+ static types(): { [key: string]: any } {
3337
+ return {
3338
+ detailInfo: CompanyFourElementsVerificationResponseBodyDataDetailInfo,
3339
+ inconsistentData: { 'type': 'array', 'itemType': 'string' },
3340
+ reasonCode: 'number',
3341
+ verifyResult: 'string',
3342
+ };
3343
+ }
3344
+
3345
+ constructor(map?: { [key: string]: any }) {
3346
+ super(map);
3347
+ }
3348
+ }
3349
+
3350
+ export class CompanyThreeElementsVerificationResponseBodyDataDetailInfo extends $tea.Model {
3351
+ enterpriseStatus?: string;
3352
+ openTime?: string;
3353
+ static names(): { [key: string]: string } {
3354
+ return {
3355
+ enterpriseStatus: 'EnterpriseStatus',
3356
+ openTime: 'OpenTime',
3357
+ };
3358
+ }
3359
+
3360
+ static types(): { [key: string]: any } {
3361
+ return {
3362
+ enterpriseStatus: 'string',
3363
+ openTime: 'string',
3364
+ };
3365
+ }
3366
+
3367
+ constructor(map?: { [key: string]: any }) {
3368
+ super(map);
3369
+ }
3370
+ }
3371
+
3372
+ export class CompanyThreeElementsVerificationResponseBodyData extends $tea.Model {
3373
+ detailInfo?: CompanyThreeElementsVerificationResponseBodyDataDetailInfo;
3374
+ inconsistentData?: string[];
3375
+ reasonCode?: number;
3376
+ verifyResult?: string;
3377
+ static names(): { [key: string]: string } {
3378
+ return {
3379
+ detailInfo: 'DetailInfo',
3380
+ inconsistentData: 'InconsistentData',
3381
+ reasonCode: 'ReasonCode',
3382
+ verifyResult: 'VerifyResult',
3383
+ };
3384
+ }
3385
+
3386
+ static types(): { [key: string]: any } {
3387
+ return {
3388
+ detailInfo: CompanyThreeElementsVerificationResponseBodyDataDetailInfo,
3389
+ inconsistentData: { 'type': 'array', 'itemType': 'string' },
3390
+ reasonCode: 'number',
3391
+ verifyResult: 'string',
3392
+ };
3393
+ }
3394
+
3395
+ constructor(map?: { [key: string]: any }) {
3396
+ super(map);
3397
+ }
3398
+ }
3399
+
3400
+ export class CompanyTwoElementsVerificationResponseBodyDataDetailInfo extends $tea.Model {
3401
+ enterpriseStatus?: string;
3402
+ openTime?: string;
3403
+ static names(): { [key: string]: string } {
3404
+ return {
3405
+ enterpriseStatus: 'EnterpriseStatus',
3406
+ openTime: 'OpenTime',
3407
+ };
3408
+ }
3409
+
3410
+ static types(): { [key: string]: any } {
3411
+ return {
3412
+ enterpriseStatus: 'string',
3413
+ openTime: 'string',
3414
+ };
3415
+ }
3416
+
3417
+ constructor(map?: { [key: string]: any }) {
3418
+ super(map);
3419
+ }
3420
+ }
3421
+
3422
+ export class CompanyTwoElementsVerificationResponseBodyData extends $tea.Model {
3423
+ detailInfo?: CompanyTwoElementsVerificationResponseBodyDataDetailInfo;
3121
3424
  inconsistentData?: string[];
3122
3425
  reasonCode?: string;
3123
3426
  verifyResult?: string;
@@ -3416,6 +3719,31 @@ export class GetUAIDApplyTokenSignResponseBodyData extends $tea.Model {
3416
3719
  }
3417
3720
  }
3418
3721
 
3722
+ export class GetUAIDConversionSignResponseBodyData extends $tea.Model {
3723
+ carrier?: string;
3724
+ outId?: string;
3725
+ sign?: string;
3726
+ static names(): { [key: string]: string } {
3727
+ return {
3728
+ carrier: 'Carrier',
3729
+ outId: 'OutId',
3730
+ sign: 'Sign',
3731
+ };
3732
+ }
3733
+
3734
+ static types(): { [key: string]: any } {
3735
+ return {
3736
+ carrier: 'string',
3737
+ outId: 'string',
3738
+ sign: 'string',
3739
+ };
3740
+ }
3741
+
3742
+ constructor(map?: { [key: string]: any }) {
3743
+ super(map);
3744
+ }
3745
+ }
3746
+
3419
3747
  export class InvalidPhoneNumberFilterResponseBodyData extends $tea.Model {
3420
3748
  code?: string;
3421
3749
  encryptedNumber?: string;
@@ -3994,6 +4322,44 @@ export class TwoElementsVerificationResponseBodyData extends $tea.Model {
3994
4322
  }
3995
4323
  }
3996
4324
 
4325
+ export class UAIDCollectionResponseBodyModel extends $tea.Model {
4326
+ uaid?: string;
4327
+ static names(): { [key: string]: string } {
4328
+ return {
4329
+ uaid: 'Uaid',
4330
+ };
4331
+ }
4332
+
4333
+ static types(): { [key: string]: any } {
4334
+ return {
4335
+ uaid: 'string',
4336
+ };
4337
+ }
4338
+
4339
+ constructor(map?: { [key: string]: any }) {
4340
+ super(map);
4341
+ }
4342
+ }
4343
+
4344
+ export class UAIDConversionResponseBodyModel extends $tea.Model {
4345
+ phoneList?: string;
4346
+ static names(): { [key: string]: string } {
4347
+ return {
4348
+ phoneList: 'PhoneList',
4349
+ };
4350
+ }
4351
+
4352
+ static types(): { [key: string]: any } {
4353
+ return {
4354
+ phoneList: 'string',
4355
+ };
4356
+ }
4357
+
4358
+ constructor(map?: { [key: string]: any }) {
4359
+ super(map);
4360
+ }
4361
+ }
4362
+
3997
4363
  export class UAIDVerificationResponseBodyData extends $tea.Model {
3998
4364
  uaid?: string;
3999
4365
  static names(): { [key: string]: string } {
@@ -4036,6 +4402,13 @@ export default class Client extends OpenApi {
4036
4402
  return EndpointUtil.getEndpointRules(productId, regionId, endpointRule, network, suffix);
4037
4403
  }
4038
4404
 
4405
+ /**
4406
+ * @summary 身份证二要素认证
4407
+ *
4408
+ * @param request CertNoTwoElementVerificationRequest
4409
+ * @param runtime runtime options for this request RuntimeOptions
4410
+ * @return CertNoTwoElementVerificationResponse
4411
+ */
4039
4412
  async certNoTwoElementVerificationWithOptions(request: CertNoTwoElementVerificationRequest, runtime: $Util.RuntimeOptions): Promise<CertNoTwoElementVerificationResponse> {
4040
4413
  Util.validateModel(request);
4041
4414
  let query = { };
@@ -4080,19 +4453,27 @@ export default class Client extends OpenApi {
4080
4453
  return $tea.cast<CertNoTwoElementVerificationResponse>(await this.callApi(params, req, runtime), new CertNoTwoElementVerificationResponse({}));
4081
4454
  }
4082
4455
 
4456
+ /**
4457
+ * @summary 身份证二要素认证
4458
+ *
4459
+ * @param request CertNoTwoElementVerificationRequest
4460
+ * @return CertNoTwoElementVerificationResponse
4461
+ */
4083
4462
  async certNoTwoElementVerification(request: CertNoTwoElementVerificationRequest): Promise<CertNoTwoElementVerificationResponse> {
4084
4463
  let runtime = new $Util.RuntimeOptions({ });
4085
4464
  return await this.certNoTwoElementVerificationWithOptions(request, runtime);
4086
4465
  }
4087
4466
 
4088
4467
  /**
4089
- * * Before you call this operation, make sure that you are familiar with the billing of services related to four-element verification for enterprises. For more information, see [Billing](https://help.aliyun.com/document_detail/154751.html?spm=a2c4g.154007.0.0.3edd7eb6E90YT4).
4090
- * * You are charged only if the value of VerifyResult is true or false and the value of ReasonCode is 0, 1, or 2.
4091
- * * Before you call this operation, perform the following operations: Log on to the [Cell Phone Number Service console](https://account.aliyun.com/login/login.htm?oauth_callback=https%3A%2F%2Fdytns.console.aliyun.com%2Foverview%3Fspm%3Da2c4g.608385.0.0.79847f8b3awqUC\\&lang=zh). On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
4092
- *
4093
- * @param request CompanyFourElementsVerificationRequest
4094
- * @param runtime runtime options for this request RuntimeOptions
4095
- * @return CompanyFourElementsVerificationResponse
4468
+ * @summary Verifies whether the enterprise name, the business license number, and the name and ID card of the legal representative belong to the same enterprise. The verification is successful only when the preceding four elements belong to the same enterprise and the business status of the enterprise is Active.
4469
+ *
4470
+ * @description * Before you call this operation, make sure that you are familiar with the billing of services related to four-element verification for enterprises. For more information, see [Billing](https://help.aliyun.com/document_detail/154751.html?spm=a2c4g.154007.0.0.3edd7eb6E90YT4).
4471
+ * * You are charged only if the value of VerifyResult is true or false and the value of ReasonCode is 0, 1, or 2.
4472
+ * * Before you call this operation, perform the following operations: Log on to the [Cell Phone Number Service console](https://account.aliyun.com/login/login.htm?oauth_callback=https%3A%2F%2Fdytns.console.aliyun.com%2Foverview%3Fspm%3Da2c4g.608385.0.0.79847f8b3awqUC\\&lang=zh). On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
4473
+ *
4474
+ * @param request CompanyFourElementsVerificationRequest
4475
+ * @param runtime runtime options for this request RuntimeOptions
4476
+ * @return CompanyFourElementsVerificationResponse
4096
4477
  */
4097
4478
  async companyFourElementsVerificationWithOptions(request: CompanyFourElementsVerificationRequest, runtime: $Util.RuntimeOptions): Promise<CompanyFourElementsVerificationResponse> {
4098
4479
  Util.validateModel(request);
@@ -4147,12 +4528,14 @@ export default class Client extends OpenApi {
4147
4528
  }
4148
4529
 
4149
4530
  /**
4150
- * * Before you call this operation, make sure that you are familiar with the billing of services related to four-element verification for enterprises. For more information, see [Billing](https://help.aliyun.com/document_detail/154751.html?spm=a2c4g.154007.0.0.3edd7eb6E90YT4).
4151
- * * You are charged only if the value of VerifyResult is true or false and the value of ReasonCode is 0, 1, or 2.
4152
- * * Before you call this operation, perform the following operations: Log on to the [Cell Phone Number Service console](https://account.aliyun.com/login/login.htm?oauth_callback=https%3A%2F%2Fdytns.console.aliyun.com%2Foverview%3Fspm%3Da2c4g.608385.0.0.79847f8b3awqUC\\&lang=zh). On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
4153
- *
4154
- * @param request CompanyFourElementsVerificationRequest
4155
- * @return CompanyFourElementsVerificationResponse
4531
+ * @summary Verifies whether the enterprise name, the business license number, and the name and ID card of the legal representative belong to the same enterprise. The verification is successful only when the preceding four elements belong to the same enterprise and the business status of the enterprise is Active.
4532
+ *
4533
+ * @description * Before you call this operation, make sure that you are familiar with the billing of services related to four-element verification for enterprises. For more information, see [Billing](https://help.aliyun.com/document_detail/154751.html?spm=a2c4g.154007.0.0.3edd7eb6E90YT4).
4534
+ * * You are charged only if the value of VerifyResult is true or false and the value of ReasonCode is 0, 1, or 2.
4535
+ * * Before you call this operation, perform the following operations: Log on to the [Cell Phone Number Service console](https://account.aliyun.com/login/login.htm?oauth_callback=https%3A%2F%2Fdytns.console.aliyun.com%2Foverview%3Fspm%3Da2c4g.608385.0.0.79847f8b3awqUC\\&lang=zh). On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
4536
+ *
4537
+ * @param request CompanyFourElementsVerificationRequest
4538
+ * @return CompanyFourElementsVerificationResponse
4156
4539
  */
4157
4540
  async companyFourElementsVerification(request: CompanyFourElementsVerificationRequest): Promise<CompanyFourElementsVerificationResponse> {
4158
4541
  let runtime = new $Util.RuntimeOptions({ });
@@ -4160,13 +4543,15 @@ export default class Client extends OpenApi {
4160
4543
  }
4161
4544
 
4162
4545
  /**
4163
- * * Before you call this operation, make sure that you are familiar with the billing of services related to three-element verification for enterprises. For more information, see [Billing](https://help.aliyun.com/document_detail/154751.html?spm=a2c4g.154007.0.0.3edd7eb6E90YT4).
4164
- * * You are charged only if the value of VerifyResult is true or false and the value of ReasonCode is 0, 1, or 2.
4165
- * * Before you call this operation, perform the following operations: Log on to the [Cell Phone Number Service console](https://account.aliyun.com/login/login.htm?oauth_callback=https%3A%2F%2Fdytns.console.aliyun.com%2Foverview%3Fspm%3Da2c4g.608385.0.0.79847f8b3awqUC\\&lang=zh). On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
4166
- *
4167
- * @param request CompanyThreeElementsVerificationRequest
4168
- * @param runtime runtime options for this request RuntimeOptions
4169
- * @return CompanyThreeElementsVerificationResponse
4546
+ * @summary Verifies whether the enterprise name, the business license number, and the name of the legal representative belong to the same enterprise. The verification is successful only when the three elements belong to the same enterprise and the business status of the enterprise is Active.
4547
+ *
4548
+ * @description * Before you call this operation, make sure that you are familiar with the billing of services related to three-element verification for enterprises. For more information, see [Billing](https://help.aliyun.com/document_detail/154751.html?spm=a2c4g.154007.0.0.3edd7eb6E90YT4).
4549
+ * * You are charged only if the value of VerifyResult is true or false and the value of ReasonCode is 0, 1, or 2.
4550
+ * * Before you call this operation, perform the following operations: Log on to the [Cell Phone Number Service console](https://account.aliyun.com/login/login.htm?oauth_callback=https%3A%2F%2Fdytns.console.aliyun.com%2Foverview%3Fspm%3Da2c4g.608385.0.0.79847f8b3awqUC\\&lang=zh). On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
4551
+ *
4552
+ * @param request CompanyThreeElementsVerificationRequest
4553
+ * @param runtime runtime options for this request RuntimeOptions
4554
+ * @return CompanyThreeElementsVerificationResponse
4170
4555
  */
4171
4556
  async companyThreeElementsVerificationWithOptions(request: CompanyThreeElementsVerificationRequest, runtime: $Util.RuntimeOptions): Promise<CompanyThreeElementsVerificationResponse> {
4172
4557
  Util.validateModel(request);
@@ -4217,12 +4602,14 @@ export default class Client extends OpenApi {
4217
4602
  }
4218
4603
 
4219
4604
  /**
4220
- * * Before you call this operation, make sure that you are familiar with the billing of services related to three-element verification for enterprises. For more information, see [Billing](https://help.aliyun.com/document_detail/154751.html?spm=a2c4g.154007.0.0.3edd7eb6E90YT4).
4221
- * * You are charged only if the value of VerifyResult is true or false and the value of ReasonCode is 0, 1, or 2.
4222
- * * Before you call this operation, perform the following operations: Log on to the [Cell Phone Number Service console](https://account.aliyun.com/login/login.htm?oauth_callback=https%3A%2F%2Fdytns.console.aliyun.com%2Foverview%3Fspm%3Da2c4g.608385.0.0.79847f8b3awqUC\\&lang=zh). On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
4223
- *
4224
- * @param request CompanyThreeElementsVerificationRequest
4225
- * @return CompanyThreeElementsVerificationResponse
4605
+ * @summary Verifies whether the enterprise name, the business license number, and the name of the legal representative belong to the same enterprise. The verification is successful only when the three elements belong to the same enterprise and the business status of the enterprise is Active.
4606
+ *
4607
+ * @description * Before you call this operation, make sure that you are familiar with the billing of services related to three-element verification for enterprises. For more information, see [Billing](https://help.aliyun.com/document_detail/154751.html?spm=a2c4g.154007.0.0.3edd7eb6E90YT4).
4608
+ * * You are charged only if the value of VerifyResult is true or false and the value of ReasonCode is 0, 1, or 2.
4609
+ * * Before you call this operation, perform the following operations: Log on to the [Cell Phone Number Service console](https://account.aliyun.com/login/login.htm?oauth_callback=https%3A%2F%2Fdytns.console.aliyun.com%2Foverview%3Fspm%3Da2c4g.608385.0.0.79847f8b3awqUC\\&lang=zh). On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
4610
+ *
4611
+ * @param request CompanyThreeElementsVerificationRequest
4612
+ * @return CompanyThreeElementsVerificationResponse
4226
4613
  */
4227
4614
  async companyThreeElementsVerification(request: CompanyThreeElementsVerificationRequest): Promise<CompanyThreeElementsVerificationResponse> {
4228
4615
  let runtime = new $Util.RuntimeOptions({ });
@@ -4230,13 +4617,15 @@ export default class Client extends OpenApi {
4230
4617
  }
4231
4618
 
4232
4619
  /**
4233
- * * Before you call this operation, make sure that you are familiar with the billing of services related to two-element verification for enterprises. For more information, see [Billing](https://help.aliyun.com/document_detail/154751.html?spm=a2c4g.154007.0.0.3edd7eb6E90YT4).
4234
- * * You are charged only if the value of VerifyResult is true or false and the value of ReasonCode is 0 or 1.
4235
- * * Before you call this operation, perform the following operations: Log on to the [Cell Phone Number Service console](https://account.aliyun.com/login/login.htm?oauth_callback=https%3A%2F%2Fdytns.console.aliyun.com%2Foverview%3Fspm%3Da2c4g.608385.0.0.79847f8b3awqUC\\&lang=zh). On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
4236
- *
4237
- * @param request CompanyTwoElementsVerificationRequest
4238
- * @param runtime runtime options for this request RuntimeOptions
4239
- * @return CompanyTwoElementsVerificationResponse
4620
+ * @summary Verifies whether the enterprise name and the business license number belong to the same enterprise. The verification is successful only when the two elements belong to the same enterprise and the business status of the enterprise is Active.
4621
+ *
4622
+ * @description * Before you call this operation, make sure that you are familiar with the billing of services related to two-element verification for enterprises. For more information, see [Billing](https://help.aliyun.com/document_detail/154751.html?spm=a2c4g.154007.0.0.3edd7eb6E90YT4).
4623
+ * * You are charged only if the value of VerifyResult is true or false and the value of ReasonCode is 0 or 1.
4624
+ * * Before you call this operation, perform the following operations: Log on to the [Cell Phone Number Service console](https://account.aliyun.com/login/login.htm?oauth_callback=https%3A%2F%2Fdytns.console.aliyun.com%2Foverview%3Fspm%3Da2c4g.608385.0.0.79847f8b3awqUC\\&lang=zh). On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
4625
+ *
4626
+ * @param request CompanyTwoElementsVerificationRequest
4627
+ * @param runtime runtime options for this request RuntimeOptions
4628
+ * @return CompanyTwoElementsVerificationResponse
4240
4629
  */
4241
4630
  async companyTwoElementsVerificationWithOptions(request: CompanyTwoElementsVerificationRequest, runtime: $Util.RuntimeOptions): Promise<CompanyTwoElementsVerificationResponse> {
4242
4631
  Util.validateModel(request);
@@ -4283,12 +4672,14 @@ export default class Client extends OpenApi {
4283
4672
  }
4284
4673
 
4285
4674
  /**
4286
- * * Before you call this operation, make sure that you are familiar with the billing of services related to two-element verification for enterprises. For more information, see [Billing](https://help.aliyun.com/document_detail/154751.html?spm=a2c4g.154007.0.0.3edd7eb6E90YT4).
4287
- * * You are charged only if the value of VerifyResult is true or false and the value of ReasonCode is 0 or 1.
4288
- * * Before you call this operation, perform the following operations: Log on to the [Cell Phone Number Service console](https://account.aliyun.com/login/login.htm?oauth_callback=https%3A%2F%2Fdytns.console.aliyun.com%2Foverview%3Fspm%3Da2c4g.608385.0.0.79847f8b3awqUC\\&lang=zh). On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
4289
- *
4290
- * @param request CompanyTwoElementsVerificationRequest
4291
- * @return CompanyTwoElementsVerificationResponse
4675
+ * @summary Verifies whether the enterprise name and the business license number belong to the same enterprise. The verification is successful only when the two elements belong to the same enterprise and the business status of the enterprise is Active.
4676
+ *
4677
+ * @description * Before you call this operation, make sure that you are familiar with the billing of services related to two-element verification for enterprises. For more information, see [Billing](https://help.aliyun.com/document_detail/154751.html?spm=a2c4g.154007.0.0.3edd7eb6E90YT4).
4678
+ * * You are charged only if the value of VerifyResult is true or false and the value of ReasonCode is 0 or 1.
4679
+ * * Before you call this operation, perform the following operations: Log on to the [Cell Phone Number Service console](https://account.aliyun.com/login/login.htm?oauth_callback=https%3A%2F%2Fdytns.console.aliyun.com%2Foverview%3Fspm%3Da2c4g.608385.0.0.79847f8b3awqUC\\&lang=zh). On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
4680
+ *
4681
+ * @param request CompanyTwoElementsVerificationRequest
4682
+ * @return CompanyTwoElementsVerificationResponse
4292
4683
  */
4293
4684
  async companyTwoElementsVerification(request: CompanyTwoElementsVerificationRequest): Promise<CompanyTwoElementsVerificationResponse> {
4294
4685
  let runtime = new $Util.RuntimeOptions({ });
@@ -4296,18 +4687,20 @@ export default class Client extends OpenApi {
4296
4687
  }
4297
4688
 
4298
4689
  /**
4299
- * * You can call this operation to verify whether a phone number is a nonexistent number. When you call this operation to verify a number, the system charges you CNY 0.01 per verification based on the number of verifications. **Before you call this operation, make sure that you are familiar with the billing of Cell Phone Number Service.**
4300
- * * You are charged only if the value of Code is OK and the value of Status is not UNKNOWN.
4301
- * * The prediction is not strictly accurate because Cell Phone Number Service predicts the nonexistent number probability by using AI algorithms. The accuracy rate of the prediction and the recall rate of empty numbers are about 95%. **Pay attention to this point when you call this operation**.
4302
- * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
4303
- * ### [](#qps)QPS limits
4304
- * You can call this operation up to 100 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
4305
- * ### [](#)Authorization information
4306
- * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](~~154006~~).
4307
- *
4308
- * @param request DescribeEmptyNumberRequest
4309
- * @param runtime runtime options for this request RuntimeOptions
4310
- * @return DescribeEmptyNumberResponse
4690
+ * @summary Predicts whether a phone number is a nonexistent number by using AI algorithms.
4691
+ *
4692
+ * @description * You can call this operation to verify whether a phone number is a nonexistent number. When you call this operation to verify a number, the system charges you CNY 0.01 per verification based on the number of verifications. **Before you call this operation, make sure that you are familiar with the billing of Cell Phone Number Service.**
4693
+ * * You are charged only if the value of Code is OK and the value of Status is not UNKNOWN.
4694
+ * * The prediction is not strictly accurate because Cell Phone Number Service predicts the nonexistent number probability by using AI algorithms. The accuracy rate of the prediction and the recall rate of empty numbers are about 95%. **Pay attention to this point when you call this operation**.
4695
+ * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
4696
+ * ### [](#qps)QPS limits
4697
+ * You can call this operation up to 100 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
4698
+ * ### [](#)Authorization information
4699
+ * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](https://help.aliyun.com/document_detail/154006.html).
4700
+ *
4701
+ * @param request DescribeEmptyNumberRequest
4702
+ * @param runtime runtime options for this request RuntimeOptions
4703
+ * @return DescribeEmptyNumberResponse
4311
4704
  */
4312
4705
  async describeEmptyNumberWithOptions(request: DescribeEmptyNumberRequest, runtime: $Util.RuntimeOptions): Promise<DescribeEmptyNumberResponse> {
4313
4706
  Util.validateModel(request);
@@ -4354,23 +4747,32 @@ export default class Client extends OpenApi {
4354
4747
  }
4355
4748
 
4356
4749
  /**
4357
- * * You can call this operation to verify whether a phone number is a nonexistent number. When you call this operation to verify a number, the system charges you CNY 0.01 per verification based on the number of verifications. **Before you call this operation, make sure that you are familiar with the billing of Cell Phone Number Service.**
4358
- * * You are charged only if the value of Code is OK and the value of Status is not UNKNOWN.
4359
- * * The prediction is not strictly accurate because Cell Phone Number Service predicts the nonexistent number probability by using AI algorithms. The accuracy rate of the prediction and the recall rate of empty numbers are about 95%. **Pay attention to this point when you call this operation**.
4360
- * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
4361
- * ### [](#qps)QPS limits
4362
- * You can call this operation up to 100 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
4363
- * ### [](#)Authorization information
4364
- * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](~~154006~~).
4365
- *
4366
- * @param request DescribeEmptyNumberRequest
4367
- * @return DescribeEmptyNumberResponse
4750
+ * @summary Predicts whether a phone number is a nonexistent number by using AI algorithms.
4751
+ *
4752
+ * @description * You can call this operation to verify whether a phone number is a nonexistent number. When you call this operation to verify a number, the system charges you CNY 0.01 per verification based on the number of verifications. **Before you call this operation, make sure that you are familiar with the billing of Cell Phone Number Service.**
4753
+ * * You are charged only if the value of Code is OK and the value of Status is not UNKNOWN.
4754
+ * * The prediction is not strictly accurate because Cell Phone Number Service predicts the nonexistent number probability by using AI algorithms. The accuracy rate of the prediction and the recall rate of empty numbers are about 95%. **Pay attention to this point when you call this operation**.
4755
+ * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
4756
+ * ### [](#qps)QPS limits
4757
+ * You can call this operation up to 100 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
4758
+ * ### [](#)Authorization information
4759
+ * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](https://help.aliyun.com/document_detail/154006.html).
4760
+ *
4761
+ * @param request DescribeEmptyNumberRequest
4762
+ * @return DescribeEmptyNumberResponse
4368
4763
  */
4369
4764
  async describeEmptyNumber(request: DescribeEmptyNumberRequest): Promise<DescribeEmptyNumberResponse> {
4370
4765
  let runtime = new $Util.RuntimeOptions({ });
4371
4766
  return await this.describeEmptyNumberWithOptions(request, runtime);
4372
4767
  }
4373
4768
 
4769
+ /**
4770
+ * @summary 号码分析实时查询蚂蚁
4771
+ *
4772
+ * @param request DescribePhoneNumberAnalysisRequest
4773
+ * @param runtime runtime options for this request RuntimeOptions
4774
+ * @return DescribePhoneNumberAnalysisResponse
4775
+ */
4374
4776
  async describePhoneNumberAnalysisWithOptions(request: DescribePhoneNumberAnalysisRequest, runtime: $Util.RuntimeOptions): Promise<DescribePhoneNumberAnalysisResponse> {
4375
4777
  Util.validateModel(request);
4376
4778
  let query = { };
@@ -4423,17 +4825,25 @@ export default class Client extends OpenApi {
4423
4825
  return $tea.cast<DescribePhoneNumberAnalysisResponse>(await this.callApi(params, req, runtime), new DescribePhoneNumberAnalysisResponse({}));
4424
4826
  }
4425
4827
 
4828
+ /**
4829
+ * @summary 号码分析实时查询蚂蚁
4830
+ *
4831
+ * @param request DescribePhoneNumberAnalysisRequest
4832
+ * @return DescribePhoneNumberAnalysisResponse
4833
+ */
4426
4834
  async describePhoneNumberAnalysis(request: DescribePhoneNumberAnalysisRequest): Promise<DescribePhoneNumberAnalysisResponse> {
4427
4835
  let runtime = new $Util.RuntimeOptions({ });
4428
4836
  return await this.describePhoneNumberAnalysisWithOptions(request, runtime);
4429
4837
  }
4430
4838
 
4431
4839
  /**
4432
- * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the Labels page, find the label that you want to use, click Activate Now, enter the required information, and then submit your application. After your application is approved, you can use the label. Before you call this operation, make sure that you are familiar with the billing of Cell Phone Number Service.
4433
- *
4434
- * @param request DescribePhoneNumberAnalysisAIRequest
4435
- * @param runtime runtime options for this request RuntimeOptions
4436
- * @return DescribePhoneNumberAnalysisAIResponse
4840
+ * @summary Obtains the analysis results of a phone number.
4841
+ *
4842
+ * @description Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the Labels page, find the label that you want to use, click Activate Now, enter the required information, and then submit your application. After your application is approved, you can use the label. Before you call this operation, make sure that you are familiar with the billing of Cell Phone Number Service.
4843
+ *
4844
+ * @param request DescribePhoneNumberAnalysisAIRequest
4845
+ * @param runtime runtime options for this request RuntimeOptions
4846
+ * @return DescribePhoneNumberAnalysisAIResponse
4437
4847
  */
4438
4848
  async describePhoneNumberAnalysisAIWithOptions(request: DescribePhoneNumberAnalysisAIRequest, runtime: $Util.RuntimeOptions): Promise<DescribePhoneNumberAnalysisAIResponse> {
4439
4849
  Util.validateModel(request);
@@ -4484,16 +4894,25 @@ export default class Client extends OpenApi {
4484
4894
  }
4485
4895
 
4486
4896
  /**
4487
- * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the Labels page, find the label that you want to use, click Activate Now, enter the required information, and then submit your application. After your application is approved, you can use the label. Before you call this operation, make sure that you are familiar with the billing of Cell Phone Number Service.
4488
- *
4489
- * @param request DescribePhoneNumberAnalysisAIRequest
4490
- * @return DescribePhoneNumberAnalysisAIResponse
4897
+ * @summary Obtains the analysis results of a phone number.
4898
+ *
4899
+ * @description Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the Labels page, find the label that you want to use, click Activate Now, enter the required information, and then submit your application. After your application is approved, you can use the label. Before you call this operation, make sure that you are familiar with the billing of Cell Phone Number Service.
4900
+ *
4901
+ * @param request DescribePhoneNumberAnalysisAIRequest
4902
+ * @return DescribePhoneNumberAnalysisAIResponse
4491
4903
  */
4492
4904
  async describePhoneNumberAnalysisAI(request: DescribePhoneNumberAnalysisAIRequest): Promise<DescribePhoneNumberAnalysisAIResponse> {
4493
4905
  let runtime = new $Util.RuntimeOptions({ });
4494
4906
  return await this.describePhoneNumberAnalysisAIWithOptions(request, runtime);
4495
4907
  }
4496
4908
 
4909
+ /**
4910
+ * @summary 泛行业人群筛选
4911
+ *
4912
+ * @param request DescribePhoneNumberAnalysisTransparentRequest
4913
+ * @param runtime runtime options for this request RuntimeOptions
4914
+ * @return DescribePhoneNumberAnalysisTransparentResponse
4915
+ */
4497
4916
  async describePhoneNumberAnalysisTransparentWithOptions(request: DescribePhoneNumberAnalysisTransparentRequest, runtime: $Util.RuntimeOptions): Promise<DescribePhoneNumberAnalysisTransparentResponse> {
4498
4917
  Util.validateModel(request);
4499
4918
  let query = { };
@@ -4542,21 +4961,30 @@ export default class Client extends OpenApi {
4542
4961
  return $tea.cast<DescribePhoneNumberAnalysisTransparentResponse>(await this.callApi(params, req, runtime), new DescribePhoneNumberAnalysisTransparentResponse({}));
4543
4962
  }
4544
4963
 
4964
+ /**
4965
+ * @summary 泛行业人群筛选
4966
+ *
4967
+ * @param request DescribePhoneNumberAnalysisTransparentRequest
4968
+ * @return DescribePhoneNumberAnalysisTransparentResponse
4969
+ */
4545
4970
  async describePhoneNumberAnalysisTransparent(request: DescribePhoneNumberAnalysisTransparentRequest): Promise<DescribePhoneNumberAnalysisTransparentResponse> {
4546
4971
  let runtime = new $Util.RuntimeOptions({ });
4547
4972
  return await this.describePhoneNumberAnalysisTransparentWithOptions(request, runtime);
4548
4973
  }
4549
4974
 
4550
4975
  /**
4551
- * @deprecated : DescribePhoneNumberAttribute is deprecated, please use Dytnsapi::2020-02-17::DescribePhoneNumberOperatorAttribute instead.
4552
- * * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
4553
- * * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](~~154006~~).
4554
- * ### [](#qps)QPS limits
4555
- * You can call this operation up to 2,000 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
4556
- *
4557
- * @param request DescribePhoneNumberAttributeRequest
4558
- * @param runtime runtime options for this request RuntimeOptions
4559
- * @return DescribePhoneNumberAttributeResponse
4976
+ * @deprecated OpenAPI DescribePhoneNumberAttribute is deprecated, please use Dytnsapi::2020-02-17::DescribePhoneNumberOperatorAttribute instead.
4977
+ *
4978
+ * @summary Queries the carrier, registration location, and mobile number portability information of a phone number.
4979
+ *
4980
+ * @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
4981
+ * * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](https://help.aliyun.com/document_detail/154006.html).
4982
+ * ### [](#qps)QPS limits
4983
+ * You can call this operation up to 2,000 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
4984
+ *
4985
+ * @param request DescribePhoneNumberAttributeRequest
4986
+ * @param runtime runtime options for this request RuntimeOptions
4987
+ * @return DescribePhoneNumberAttributeResponse
4560
4988
  */
4561
4989
  // Deprecated
4562
4990
  async describePhoneNumberAttributeWithOptions(request: DescribePhoneNumberAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribePhoneNumberAttributeResponse> {
@@ -4596,14 +5024,17 @@ export default class Client extends OpenApi {
4596
5024
  }
4597
5025
 
4598
5026
  /**
4599
- * @deprecated : DescribePhoneNumberAttribute is deprecated, please use Dytnsapi::2020-02-17::DescribePhoneNumberOperatorAttribute instead.
4600
- * * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
4601
- * * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](~~154006~~).
4602
- * ### [](#qps)QPS limits
4603
- * You can call this operation up to 2,000 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
4604
- *
4605
- * @param request DescribePhoneNumberAttributeRequest
4606
- * @return DescribePhoneNumberAttributeResponse
5027
+ * @deprecated OpenAPI DescribePhoneNumberAttribute is deprecated, please use Dytnsapi::2020-02-17::DescribePhoneNumberOperatorAttribute instead.
5028
+ *
5029
+ * @summary Queries the carrier, registration location, and mobile number portability information of a phone number.
5030
+ *
5031
+ * @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
5032
+ * * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](https://help.aliyun.com/document_detail/154006.html).
5033
+ * ### [](#qps)QPS limits
5034
+ * You can call this operation up to 2,000 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
5035
+ *
5036
+ * @param request DescribePhoneNumberAttributeRequest
5037
+ * @return DescribePhoneNumberAttributeResponse
4607
5038
  */
4608
5039
  // Deprecated
4609
5040
  async describePhoneNumberAttribute(request: DescribePhoneNumberAttributeRequest): Promise<DescribePhoneNumberAttributeResponse> {
@@ -4612,14 +5043,16 @@ export default class Client extends OpenApi {
4612
5043
  }
4613
5044
 
4614
5045
  /**
4615
- * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
4616
- * * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
4617
- * ### [](#qps)QPS limits
4618
- * You can call this operation up to 200 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
4619
- *
4620
- * @param request DescribePhoneNumberOnlineTimeRequest
4621
- * @param runtime runtime options for this request RuntimeOptions
4622
- * @return DescribePhoneNumberOnlineTimeResponse
5046
+ * @summary Queries the usage period of a phone number of a user.
5047
+ *
5048
+ * @description * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
5049
+ * * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
5050
+ * ### [](#qps)QPS limits
5051
+ * You can call this operation up to 200 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
5052
+ *
5053
+ * @param request DescribePhoneNumberOnlineTimeRequest
5054
+ * @param runtime runtime options for this request RuntimeOptions
5055
+ * @return DescribePhoneNumberOnlineTimeResponse
4623
5056
  */
4624
5057
  async describePhoneNumberOnlineTimeWithOptions(request: DescribePhoneNumberOnlineTimeRequest, runtime: $Util.RuntimeOptions): Promise<DescribePhoneNumberOnlineTimeResponse> {
4625
5058
  Util.validateModel(request);
@@ -4670,13 +5103,15 @@ export default class Client extends OpenApi {
4670
5103
  }
4671
5104
 
4672
5105
  /**
4673
- * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
4674
- * * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
4675
- * ### [](#qps)QPS limits
4676
- * You can call this operation up to 200 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
4677
- *
4678
- * @param request DescribePhoneNumberOnlineTimeRequest
4679
- * @return DescribePhoneNumberOnlineTimeResponse
5106
+ * @summary Queries the usage period of a phone number of a user.
5107
+ *
5108
+ * @description * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
5109
+ * * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
5110
+ * ### [](#qps)QPS limits
5111
+ * You can call this operation up to 200 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
5112
+ *
5113
+ * @param request DescribePhoneNumberOnlineTimeRequest
5114
+ * @return DescribePhoneNumberOnlineTimeResponse
4680
5115
  */
4681
5116
  async describePhoneNumberOnlineTime(request: DescribePhoneNumberOnlineTimeRequest): Promise<DescribePhoneNumberOnlineTimeResponse> {
4682
5117
  let runtime = new $Util.RuntimeOptions({ });
@@ -4684,14 +5119,16 @@ export default class Client extends OpenApi {
4684
5119
  }
4685
5120
 
4686
5121
  /**
4687
- * * Before you call this operation, make sure that you are familiar with the [billing](~~154008~~) of Cell Phone Number Service.
4688
- * * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](~~154006~~).
4689
- * * You can call this operation to obtain the carrier, registration location, and mobile number portability information about a phone number. You can query phone numbers in **plaintext** and phone numbers that are encrypted by using **MD5** and **SHA256**.
4690
- * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
4691
- *
4692
- * @param request DescribePhoneNumberOperatorAttributeRequest
4693
- * @param runtime runtime options for this request RuntimeOptions
4694
- * @return DescribePhoneNumberOperatorAttributeResponse
5122
+ * @summary Queries the attribute information about a phone number, including the registration province, registration city, basic carrier (such as China Mobile, China Unicom, China Telecom, or China Broadnet), reseller of mobile communications services (such as Alibaba Communications), mobile number portability, and the number segment to which the phone number belongs.
5123
+ *
5124
+ * @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154008.html) of Cell Phone Number Service.
5125
+ * * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](https://help.aliyun.com/document_detail/154006.html).
5126
+ * * You can call this operation to obtain the carrier, registration location, and mobile number portability information about a phone number. You can query phone numbers in **plaintext** and phone numbers that are encrypted by using **MD5** and **SHA256**.
5127
+ * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
5128
+ *
5129
+ * @param request DescribePhoneNumberOperatorAttributeRequest
5130
+ * @param runtime runtime options for this request RuntimeOptions
5131
+ * @return DescribePhoneNumberOperatorAttributeResponse
4695
5132
  */
4696
5133
  async describePhoneNumberOperatorAttributeWithOptions(request: DescribePhoneNumberOperatorAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribePhoneNumberOperatorAttributeResponse> {
4697
5134
  Util.validateModel(request);
@@ -4738,19 +5175,28 @@ export default class Client extends OpenApi {
4738
5175
  }
4739
5176
 
4740
5177
  /**
4741
- * * Before you call this operation, make sure that you are familiar with the [billing](~~154008~~) of Cell Phone Number Service.
4742
- * * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](~~154006~~).
4743
- * * You can call this operation to obtain the carrier, registration location, and mobile number portability information about a phone number. You can query phone numbers in **plaintext** and phone numbers that are encrypted by using **MD5** and **SHA256**.
4744
- * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
4745
- *
4746
- * @param request DescribePhoneNumberOperatorAttributeRequest
4747
- * @return DescribePhoneNumberOperatorAttributeResponse
5178
+ * @summary Queries the attribute information about a phone number, including the registration province, registration city, basic carrier (such as China Mobile, China Unicom, China Telecom, or China Broadnet), reseller of mobile communications services (such as Alibaba Communications), mobile number portability, and the number segment to which the phone number belongs.
5179
+ *
5180
+ * @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154008.html) of Cell Phone Number Service.
5181
+ * * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](https://help.aliyun.com/document_detail/154006.html).
5182
+ * * You can call this operation to obtain the carrier, registration location, and mobile number portability information about a phone number. You can query phone numbers in **plaintext** and phone numbers that are encrypted by using **MD5** and **SHA256**.
5183
+ * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
5184
+ *
5185
+ * @param request DescribePhoneNumberOperatorAttributeRequest
5186
+ * @return DescribePhoneNumberOperatorAttributeResponse
4748
5187
  */
4749
5188
  async describePhoneNumberOperatorAttribute(request: DescribePhoneNumberOperatorAttributeRequest): Promise<DescribePhoneNumberOperatorAttributeResponse> {
4750
5189
  let runtime = new $Util.RuntimeOptions({ });
4751
5190
  return await this.describePhoneNumberOperatorAttributeWithOptions(request, runtime);
4752
5191
  }
4753
5192
 
5193
+ /**
5194
+ * @summary 风险用户评分
5195
+ *
5196
+ * @param request DescribePhoneNumberRiskRequest
5197
+ * @param runtime runtime options for this request RuntimeOptions
5198
+ * @return DescribePhoneNumberRiskResponse
5199
+ */
4754
5200
  async describePhoneNumberRiskWithOptions(request: DescribePhoneNumberRiskRequest, runtime: $Util.RuntimeOptions): Promise<DescribePhoneNumberRiskResponse> {
4755
5201
  Util.validateModel(request);
4756
5202
  let query = { };
@@ -4795,23 +5241,31 @@ export default class Client extends OpenApi {
4795
5241
  return $tea.cast<DescribePhoneNumberRiskResponse>(await this.callApi(params, req, runtime), new DescribePhoneNumberRiskResponse({}));
4796
5242
  }
4797
5243
 
5244
+ /**
5245
+ * @summary 风险用户评分
5246
+ *
5247
+ * @param request DescribePhoneNumberRiskRequest
5248
+ * @return DescribePhoneNumberRiskResponse
5249
+ */
4798
5250
  async describePhoneNumberRisk(request: DescribePhoneNumberRiskRequest): Promise<DescribePhoneNumberRiskResponse> {
4799
5251
  let runtime = new $Util.RuntimeOptions({ });
4800
5252
  return await this.describePhoneNumberRiskWithOptions(request, runtime);
4801
5253
  }
4802
5254
 
4803
5255
  /**
4804
- * * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
4805
- * * You are charged for phone number verifications only if the value of Code is OK and the value of VerifyResult is not 0.
4806
- * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
4807
- * ## [](#qps)QPS limits
4808
- * You can call this operation up to 100 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
4809
- * ## [](#)Authorization information
4810
- * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](~~154006~~).
4811
- *
4812
- * @param request DescribePhoneTwiceTelVerifyRequest
4813
- * @param runtime runtime options for this request RuntimeOptions
4814
- * @return DescribePhoneTwiceTelVerifyResponse
5256
+ * @summary Verifies whether a phone number is a reassigned phone number by calling this operation.
5257
+ *
5258
+ * @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
5259
+ * * You are charged for phone number verifications only if the value of Code is OK and the value of VerifyResult is not 0.
5260
+ * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
5261
+ * ## [](#qps)QPS limits
5262
+ * You can call this operation up to 100 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
5263
+ * ## [](#)Authorization information
5264
+ * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](https://help.aliyun.com/document_detail/154006.html).
5265
+ *
5266
+ * @param request DescribePhoneTwiceTelVerifyRequest
5267
+ * @param runtime runtime options for this request RuntimeOptions
5268
+ * @return DescribePhoneTwiceTelVerifyResponse
4815
5269
  */
4816
5270
  async describePhoneTwiceTelVerifyWithOptions(request: DescribePhoneTwiceTelVerifyRequest, runtime: $Util.RuntimeOptions): Promise<DescribePhoneTwiceTelVerifyResponse> {
4817
5271
  Util.validateModel(request);
@@ -4862,22 +5316,31 @@ export default class Client extends OpenApi {
4862
5316
  }
4863
5317
 
4864
5318
  /**
4865
- * * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
4866
- * * You are charged for phone number verifications only if the value of Code is OK and the value of VerifyResult is not 0.
4867
- * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
4868
- * ## [](#qps)QPS limits
4869
- * You can call this operation up to 100 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
4870
- * ## [](#)Authorization information
4871
- * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](~~154006~~).
4872
- *
4873
- * @param request DescribePhoneTwiceTelVerifyRequest
4874
- * @return DescribePhoneTwiceTelVerifyResponse
5319
+ * @summary Verifies whether a phone number is a reassigned phone number by calling this operation.
5320
+ *
5321
+ * @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
5322
+ * * You are charged for phone number verifications only if the value of Code is OK and the value of VerifyResult is not 0.
5323
+ * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
5324
+ * ## [](#qps)QPS limits
5325
+ * You can call this operation up to 100 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
5326
+ * ## [](#)Authorization information
5327
+ * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](https://help.aliyun.com/document_detail/154006.html).
5328
+ *
5329
+ * @param request DescribePhoneTwiceTelVerifyRequest
5330
+ * @return DescribePhoneTwiceTelVerifyResponse
4875
5331
  */
4876
5332
  async describePhoneTwiceTelVerify(request: DescribePhoneTwiceTelVerifyRequest): Promise<DescribePhoneTwiceTelVerifyResponse> {
4877
5333
  let runtime = new $Util.RuntimeOptions({ });
4878
5334
  return await this.describePhoneTwiceTelVerifyWithOptions(request, runtime);
4879
5335
  }
4880
5336
 
5337
+ /**
5338
+ * @summary 获取UAID申请Token所需的签名字段
5339
+ *
5340
+ * @param request GetUAIDApplyTokenSignRequest
5341
+ * @param runtime runtime options for this request RuntimeOptions
5342
+ * @return GetUAIDApplyTokenSignResponse
5343
+ */
4881
5344
  async getUAIDApplyTokenSignWithOptions(request: GetUAIDApplyTokenSignRequest, runtime: $Util.RuntimeOptions): Promise<GetUAIDApplyTokenSignResponse> {
4882
5345
  Util.validateModel(request);
4883
5346
  let query = { };
@@ -4942,19 +5405,109 @@ export default class Client extends OpenApi {
4942
5405
  return $tea.cast<GetUAIDApplyTokenSignResponse>(await this.callApi(params, req, runtime), new GetUAIDApplyTokenSignResponse({}));
4943
5406
  }
4944
5407
 
5408
+ /**
5409
+ * @summary 获取UAID申请Token所需的签名字段
5410
+ *
5411
+ * @param request GetUAIDApplyTokenSignRequest
5412
+ * @return GetUAIDApplyTokenSignResponse
5413
+ */
4945
5414
  async getUAIDApplyTokenSign(request: GetUAIDApplyTokenSignRequest): Promise<GetUAIDApplyTokenSignResponse> {
4946
5415
  let runtime = new $Util.RuntimeOptions({ });
4947
5416
  return await this.getUAIDApplyTokenSignWithOptions(request, runtime);
4948
5417
  }
4949
5418
 
4950
5419
  /**
4951
- * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
4952
- * ### [](#qps)QPS limits
4953
- * You can call this operation up to 1,000 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
4954
- *
4955
- * @param request InvalidPhoneNumberFilterRequest
4956
- * @param runtime runtime options for this request RuntimeOptions
4957
- * @return InvalidPhoneNumberFilterResponse
5420
+ * @summary 获取号码采集服务申请Token所需的签名字段
5421
+ *
5422
+ * @param request GetUAIDConversionSignRequest
5423
+ * @param runtime runtime options for this request RuntimeOptions
5424
+ * @return GetUAIDConversionSignResponse
5425
+ */
5426
+ async getUAIDConversionSignWithOptions(request: GetUAIDConversionSignRequest, runtime: $Util.RuntimeOptions): Promise<GetUAIDConversionSignResponse> {
5427
+ Util.validateModel(request);
5428
+ let query = { };
5429
+ if (!Util.isUnset(request.authCode)) {
5430
+ query["AuthCode"] = request.authCode;
5431
+ }
5432
+
5433
+ if (!Util.isUnset(request.carrier)) {
5434
+ query["Carrier"] = request.carrier;
5435
+ }
5436
+
5437
+ if (!Util.isUnset(request.clientType)) {
5438
+ query["ClientType"] = request.clientType;
5439
+ }
5440
+
5441
+ if (!Util.isUnset(request.format)) {
5442
+ query["Format"] = request.format;
5443
+ }
5444
+
5445
+ if (!Util.isUnset(request.outId)) {
5446
+ query["OutId"] = request.outId;
5447
+ }
5448
+
5449
+ if (!Util.isUnset(request.ownerId)) {
5450
+ query["OwnerId"] = request.ownerId;
5451
+ }
5452
+
5453
+ if (!Util.isUnset(request.paramKey)) {
5454
+ query["ParamKey"] = request.paramKey;
5455
+ }
5456
+
5457
+ if (!Util.isUnset(request.paramStr)) {
5458
+ query["ParamStr"] = request.paramStr;
5459
+ }
5460
+
5461
+ if (!Util.isUnset(request.resourceOwnerAccount)) {
5462
+ query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
5463
+ }
5464
+
5465
+ if (!Util.isUnset(request.resourceOwnerId)) {
5466
+ query["ResourceOwnerId"] = request.resourceOwnerId;
5467
+ }
5468
+
5469
+ if (!Util.isUnset(request.time)) {
5470
+ query["Time"] = request.time;
5471
+ }
5472
+
5473
+ let req = new $OpenApi.OpenApiRequest({
5474
+ query: OpenApiUtil.query(query),
5475
+ });
5476
+ let params = new $OpenApi.Params({
5477
+ action: "GetUAIDConversionSign",
5478
+ version: "2020-02-17",
5479
+ protocol: "HTTPS",
5480
+ pathname: "/",
5481
+ method: "POST",
5482
+ authType: "AK",
5483
+ style: "RPC",
5484
+ reqBodyType: "formData",
5485
+ bodyType: "json",
5486
+ });
5487
+ return $tea.cast<GetUAIDConversionSignResponse>(await this.callApi(params, req, runtime), new GetUAIDConversionSignResponse({}));
5488
+ }
5489
+
5490
+ /**
5491
+ * @summary 获取号码采集服务申请Token所需的签名字段
5492
+ *
5493
+ * @param request GetUAIDConversionSignRequest
5494
+ * @return GetUAIDConversionSignResponse
5495
+ */
5496
+ async getUAIDConversionSign(request: GetUAIDConversionSignRequest): Promise<GetUAIDConversionSignResponse> {
5497
+ let runtime = new $Util.RuntimeOptions({ });
5498
+ return await this.getUAIDConversionSignWithOptions(request, runtime);
5499
+ }
5500
+
5501
+ /**
5502
+ * @summary Filters invalid phone numbers.
5503
+ *
5504
+ * @description Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
5505
+ * ### [](#qps)QPS limits
5506
+ * You can call this operation up to 1,000 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
5507
+ *
5508
+ * @param request InvalidPhoneNumberFilterRequest
5509
+ * @param runtime runtime options for this request RuntimeOptions
5510
+ * @return InvalidPhoneNumberFilterResponse
4958
5511
  */
4959
5512
  async invalidPhoneNumberFilterWithOptions(request: InvalidPhoneNumberFilterRequest, runtime: $Util.RuntimeOptions): Promise<InvalidPhoneNumberFilterResponse> {
4960
5513
  Util.validateModel(request);
@@ -5001,18 +5554,25 @@ export default class Client extends OpenApi {
5001
5554
  }
5002
5555
 
5003
5556
  /**
5004
- * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
5005
- * ### [](#qps)QPS limits
5006
- * You can call this operation up to 1,000 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
5007
- *
5008
- * @param request InvalidPhoneNumberFilterRequest
5009
- * @return InvalidPhoneNumberFilterResponse
5557
+ * @summary Filters invalid phone numbers.
5558
+ *
5559
+ * @description Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
5560
+ * ### [](#qps)QPS limits
5561
+ * You can call this operation up to 1,000 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
5562
+ *
5563
+ * @param request InvalidPhoneNumberFilterRequest
5564
+ * @return InvalidPhoneNumberFilterResponse
5010
5565
  */
5011
5566
  async invalidPhoneNumberFilter(request: InvalidPhoneNumberFilterRequest): Promise<InvalidPhoneNumberFilterResponse> {
5012
5567
  let runtime = new $Util.RuntimeOptions({ });
5013
5568
  return await this.invalidPhoneNumberFilterWithOptions(request, runtime);
5014
5569
  }
5015
5570
 
5571
+ /**
5572
+ * @param request PhoneNumberConvertServiceRequest
5573
+ * @param runtime runtime options for this request RuntimeOptions
5574
+ * @return PhoneNumberConvertServiceResponse
5575
+ */
5016
5576
  async phoneNumberConvertServiceWithOptions(request: PhoneNumberConvertServiceRequest, runtime: $Util.RuntimeOptions): Promise<PhoneNumberConvertServiceResponse> {
5017
5577
  Util.validateModel(request);
5018
5578
  let query = { };
@@ -5057,19 +5617,25 @@ export default class Client extends OpenApi {
5057
5617
  return $tea.cast<PhoneNumberConvertServiceResponse>(await this.callApi(params, req, runtime), new PhoneNumberConvertServiceResponse({}));
5058
5618
  }
5059
5619
 
5620
+ /**
5621
+ * @param request PhoneNumberConvertServiceRequest
5622
+ * @return PhoneNumberConvertServiceResponse
5623
+ */
5060
5624
  async phoneNumberConvertService(request: PhoneNumberConvertServiceRequest): Promise<PhoneNumberConvertServiceResponse> {
5061
5625
  let runtime = new $Util.RuntimeOptions({ });
5062
5626
  return await this.phoneNumberConvertServiceWithOptions(request, runtime);
5063
5627
  }
5064
5628
 
5065
5629
  /**
5066
- * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
5067
- * ### [](#qps)QPS limits
5068
- * You can call this operation up to 1,000 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
5069
- *
5070
- * @param request PhoneNumberEncryptRequest
5071
- * @param runtime runtime options for this request RuntimeOptions
5072
- * @return PhoneNumberEncryptResponse
5630
+ * @summary Encrypts the original phone number into a virtual number that starts with 140. Cell Phone Number Service integrates the communications services provided by Alibaba Cloud. This allows you to initiate a call by using a virtual number that starts with 140.
5631
+ *
5632
+ * @description Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
5633
+ * ### [](#qps)QPS limits
5634
+ * You can call this operation up to 1,000 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
5635
+ *
5636
+ * @param request PhoneNumberEncryptRequest
5637
+ * @param runtime runtime options for this request RuntimeOptions
5638
+ * @return PhoneNumberEncryptResponse
5073
5639
  */
5074
5640
  async phoneNumberEncryptWithOptions(request: PhoneNumberEncryptRequest, runtime: $Util.RuntimeOptions): Promise<PhoneNumberEncryptResponse> {
5075
5641
  Util.validateModel(request);
@@ -5116,12 +5682,14 @@ export default class Client extends OpenApi {
5116
5682
  }
5117
5683
 
5118
5684
  /**
5119
- * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
5120
- * ### [](#qps)QPS limits
5121
- * You can call this operation up to 1,000 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
5122
- *
5123
- * @param request PhoneNumberEncryptRequest
5124
- * @return PhoneNumberEncryptResponse
5685
+ * @summary Encrypts the original phone number into a virtual number that starts with 140. Cell Phone Number Service integrates the communications services provided by Alibaba Cloud. This allows you to initiate a call by using a virtual number that starts with 140.
5686
+ *
5687
+ * @description Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
5688
+ * ### [](#qps)QPS limits
5689
+ * You can call this operation up to 1,000 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
5690
+ *
5691
+ * @param request PhoneNumberEncryptRequest
5692
+ * @return PhoneNumberEncryptResponse
5125
5693
  */
5126
5694
  async phoneNumberEncrypt(request: PhoneNumberEncryptRequest): Promise<PhoneNumberEncryptResponse> {
5127
5695
  let runtime = new $Util.RuntimeOptions({ });
@@ -5129,15 +5697,17 @@ export default class Client extends OpenApi {
5129
5697
  }
5130
5698
 
5131
5699
  /**
5132
- * * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
5133
- * * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](~~154006~~).
5134
- * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
5135
- * ### [](#qps)QPS limits
5136
- * You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
5137
- *
5138
- * @param request PhoneNumberStatusForAccountRequest
5139
- * @param runtime runtime options for this request RuntimeOptions
5140
- * @return PhoneNumberStatusForAccountResponse
5700
+ * @summary Queries the real-time service state of a phone number. The state includes NORMAL, SHUTDOWN, and NOT_EXIST. You can choose an encryption method for your phone number query, including plaintext, MD5, and SHA256.
5701
+ *
5702
+ * @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
5703
+ * * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](https://help.aliyun.com/document_detail/154006.html).
5704
+ * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
5705
+ * ### [](#qps)QPS limits
5706
+ * You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
5707
+ *
5708
+ * @param request PhoneNumberStatusForAccountRequest
5709
+ * @param runtime runtime options for this request RuntimeOptions
5710
+ * @return PhoneNumberStatusForAccountResponse
5141
5711
  */
5142
5712
  async phoneNumberStatusForAccountWithOptions(request: PhoneNumberStatusForAccountRequest, runtime: $Util.RuntimeOptions): Promise<PhoneNumberStatusForAccountResponse> {
5143
5713
  Util.validateModel(request);
@@ -5184,14 +5754,16 @@ export default class Client extends OpenApi {
5184
5754
  }
5185
5755
 
5186
5756
  /**
5187
- * * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
5188
- * * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](~~154006~~).
5189
- * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
5190
- * ### [](#qps)QPS limits
5191
- * You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
5192
- *
5193
- * @param request PhoneNumberStatusForAccountRequest
5194
- * @return PhoneNumberStatusForAccountResponse
5757
+ * @summary Queries the real-time service state of a phone number. The state includes NORMAL, SHUTDOWN, and NOT_EXIST. You can choose an encryption method for your phone number query, including plaintext, MD5, and SHA256.
5758
+ *
5759
+ * @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
5760
+ * * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](https://help.aliyun.com/document_detail/154006.html).
5761
+ * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
5762
+ * ### [](#qps)QPS limits
5763
+ * You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
5764
+ *
5765
+ * @param request PhoneNumberStatusForAccountRequest
5766
+ * @return PhoneNumberStatusForAccountResponse
5195
5767
  */
5196
5768
  async phoneNumberStatusForAccount(request: PhoneNumberStatusForAccountRequest): Promise<PhoneNumberStatusForAccountResponse> {
5197
5769
  let runtime = new $Util.RuntimeOptions({ });
@@ -5199,15 +5771,17 @@ export default class Client extends OpenApi {
5199
5771
  }
5200
5772
 
5201
5773
  /**
5202
- * * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
5203
- * * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](~~154006~~).
5204
- * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
5205
- * ### [](#qps)QPS limits
5206
- * You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
5207
- *
5208
- * @param request PhoneNumberStatusForPublicRequest
5209
- * @param runtime runtime options for this request RuntimeOptions
5210
- * @return PhoneNumberStatusForPublicResponse
5774
+ * @summary Queries the real-time service state of a phone number. The state includes NORMAL, SHUTDOWN, and NOT_EXIST. You can choose an encryption method for your phone number query, including plaintext, MD5, and SHA256.
5775
+ *
5776
+ * @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
5777
+ * * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](https://help.aliyun.com/document_detail/154006.html).
5778
+ * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
5779
+ * ### [](#qps)QPS limits
5780
+ * You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
5781
+ *
5782
+ * @param request PhoneNumberStatusForPublicRequest
5783
+ * @param runtime runtime options for this request RuntimeOptions
5784
+ * @return PhoneNumberStatusForPublicResponse
5211
5785
  */
5212
5786
  async phoneNumberStatusForPublicWithOptions(request: PhoneNumberStatusForPublicRequest, runtime: $Util.RuntimeOptions): Promise<PhoneNumberStatusForPublicResponse> {
5213
5787
  Util.validateModel(request);
@@ -5254,14 +5828,16 @@ export default class Client extends OpenApi {
5254
5828
  }
5255
5829
 
5256
5830
  /**
5257
- * * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
5258
- * * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](~~154006~~).
5259
- * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
5260
- * ### [](#qps)QPS limits
5261
- * You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
5262
- *
5263
- * @param request PhoneNumberStatusForPublicRequest
5264
- * @return PhoneNumberStatusForPublicResponse
5831
+ * @summary Queries the real-time service state of a phone number. The state includes NORMAL, SHUTDOWN, and NOT_EXIST. You can choose an encryption method for your phone number query, including plaintext, MD5, and SHA256.
5832
+ *
5833
+ * @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
5834
+ * * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](https://help.aliyun.com/document_detail/154006.html).
5835
+ * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
5836
+ * ### [](#qps)QPS limits
5837
+ * You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
5838
+ *
5839
+ * @param request PhoneNumberStatusForPublicRequest
5840
+ * @return PhoneNumberStatusForPublicResponse
5265
5841
  */
5266
5842
  async phoneNumberStatusForPublic(request: PhoneNumberStatusForPublicRequest): Promise<PhoneNumberStatusForPublicResponse> {
5267
5843
  let runtime = new $Util.RuntimeOptions({ });
@@ -5269,15 +5845,17 @@ export default class Client extends OpenApi {
5269
5845
  }
5270
5846
 
5271
5847
  /**
5272
- * * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
5273
- * * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](~~154006~~).
5274
- * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
5275
- * ### [](#qps)QPS limits
5276
- * You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
5277
- *
5278
- * @param request PhoneNumberStatusForRealRequest
5279
- * @param runtime runtime options for this request RuntimeOptions
5280
- * @return PhoneNumberStatusForRealResponse
5848
+ * @summary Queries the real-time service state of a phone number. The state includes NORMAL, SHUTDOWN, and NOT_EXIST. You can choose an encryption method for your phone number query, including plaintext, MD5, and SHA256.
5849
+ *
5850
+ * @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
5851
+ * * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](https://help.aliyun.com/document_detail/154006.html).
5852
+ * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
5853
+ * ### [](#qps)QPS limits
5854
+ * You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
5855
+ *
5856
+ * @param request PhoneNumberStatusForRealRequest
5857
+ * @param runtime runtime options for this request RuntimeOptions
5858
+ * @return PhoneNumberStatusForRealResponse
5281
5859
  */
5282
5860
  async phoneNumberStatusForRealWithOptions(request: PhoneNumberStatusForRealRequest, runtime: $Util.RuntimeOptions): Promise<PhoneNumberStatusForRealResponse> {
5283
5861
  Util.validateModel(request);
@@ -5324,14 +5902,16 @@ export default class Client extends OpenApi {
5324
5902
  }
5325
5903
 
5326
5904
  /**
5327
- * * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
5328
- * * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](~~154006~~).
5329
- * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
5330
- * ### [](#qps)QPS limits
5331
- * You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
5332
- *
5333
- * @param request PhoneNumberStatusForRealRequest
5334
- * @return PhoneNumberStatusForRealResponse
5905
+ * @summary Queries the real-time service state of a phone number. The state includes NORMAL, SHUTDOWN, and NOT_EXIST. You can choose an encryption method for your phone number query, including plaintext, MD5, and SHA256.
5906
+ *
5907
+ * @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
5908
+ * * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](https://help.aliyun.com/document_detail/154006.html).
5909
+ * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
5910
+ * ### [](#qps)QPS limits
5911
+ * You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
5912
+ *
5913
+ * @param request PhoneNumberStatusForRealRequest
5914
+ * @return PhoneNumberStatusForRealResponse
5335
5915
  */
5336
5916
  async phoneNumberStatusForReal(request: PhoneNumberStatusForRealRequest): Promise<PhoneNumberStatusForRealResponse> {
5337
5917
  let runtime = new $Util.RuntimeOptions({ });
@@ -5339,15 +5919,17 @@ export default class Client extends OpenApi {
5339
5919
  }
5340
5920
 
5341
5921
  /**
5342
- * * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
5343
- * * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](~~154006~~).
5344
- * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
5345
- * ### [](#qps)QPS limits
5346
- * You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
5347
- *
5348
- * @param request PhoneNumberStatusForSmsRequest
5349
- * @param runtime runtime options for this request RuntimeOptions
5350
- * @return PhoneNumberStatusForSmsResponse
5922
+ * @summary Queries the real-time service state of a phone number. The state includes NORMAL, SHUTDOWN, and NOT_EXIST. You can choose an encryption method for your phone number query, including plaintext, MD5, and SHA256.
5923
+ *
5924
+ * @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
5925
+ * * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](https://help.aliyun.com/document_detail/154006.html).
5926
+ * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
5927
+ * ### [](#qps)QPS limits
5928
+ * You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
5929
+ *
5930
+ * @param request PhoneNumberStatusForSmsRequest
5931
+ * @param runtime runtime options for this request RuntimeOptions
5932
+ * @return PhoneNumberStatusForSmsResponse
5351
5933
  */
5352
5934
  async phoneNumberStatusForSmsWithOptions(request: PhoneNumberStatusForSmsRequest, runtime: $Util.RuntimeOptions): Promise<PhoneNumberStatusForSmsResponse> {
5353
5935
  Util.validateModel(request);
@@ -5394,14 +5976,16 @@ export default class Client extends OpenApi {
5394
5976
  }
5395
5977
 
5396
5978
  /**
5397
- * * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
5398
- * * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](~~154006~~).
5399
- * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
5400
- * ### [](#qps)QPS limits
5401
- * You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
5402
- *
5403
- * @param request PhoneNumberStatusForSmsRequest
5404
- * @return PhoneNumberStatusForSmsResponse
5979
+ * @summary Queries the real-time service state of a phone number. The state includes NORMAL, SHUTDOWN, and NOT_EXIST. You can choose an encryption method for your phone number query, including plaintext, MD5, and SHA256.
5980
+ *
5981
+ * @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
5982
+ * * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](https://help.aliyun.com/document_detail/154006.html).
5983
+ * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
5984
+ * ### [](#qps)QPS limits
5985
+ * You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
5986
+ *
5987
+ * @param request PhoneNumberStatusForSmsRequest
5988
+ * @return PhoneNumberStatusForSmsResponse
5405
5989
  */
5406
5990
  async phoneNumberStatusForSms(request: PhoneNumberStatusForSmsRequest): Promise<PhoneNumberStatusForSmsResponse> {
5407
5991
  let runtime = new $Util.RuntimeOptions({ });
@@ -5409,16 +5993,18 @@ export default class Client extends OpenApi {
5409
5993
  }
5410
5994
 
5411
5995
  /**
5412
- * * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
5413
- * * You are charged only if the value of Code is OK and the value of IsPrivacyNumber is true or false.
5414
- * * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](~~154006~~).
5415
- * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
5416
- * ### [](#qps)QPS limits
5417
- * You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
5418
- *
5419
- * @param request PhoneNumberStatusForVirtualRequest
5420
- * @param runtime runtime options for this request RuntimeOptions
5421
- * @return PhoneNumberStatusForVirtualResponse
5996
+ * @summary Queries the status of a virtual phone number. You can choose an encryption method for your phone number query, including plaintext, MD5, and SHA256.
5997
+ *
5998
+ * @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
5999
+ * * You are charged only if the value of Code is OK and the value of IsPrivacyNumber is true or false.
6000
+ * * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](https://help.aliyun.com/document_detail/154006.html).
6001
+ * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
6002
+ * ### [](#qps)QPS limits
6003
+ * You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
6004
+ *
6005
+ * @param request PhoneNumberStatusForVirtualRequest
6006
+ * @param runtime runtime options for this request RuntimeOptions
6007
+ * @return PhoneNumberStatusForVirtualResponse
5422
6008
  */
5423
6009
  async phoneNumberStatusForVirtualWithOptions(request: PhoneNumberStatusForVirtualRequest, runtime: $Util.RuntimeOptions): Promise<PhoneNumberStatusForVirtualResponse> {
5424
6010
  Util.validateModel(request);
@@ -5465,15 +6051,17 @@ export default class Client extends OpenApi {
5465
6051
  }
5466
6052
 
5467
6053
  /**
5468
- * * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
5469
- * * You are charged only if the value of Code is OK and the value of IsPrivacyNumber is true or false.
5470
- * * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](~~154006~~).
5471
- * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
5472
- * ### [](#qps)QPS limits
5473
- * You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
5474
- *
5475
- * @param request PhoneNumberStatusForVirtualRequest
5476
- * @return PhoneNumberStatusForVirtualResponse
6054
+ * @summary Queries the status of a virtual phone number. You can choose an encryption method for your phone number query, including plaintext, MD5, and SHA256.
6055
+ *
6056
+ * @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
6057
+ * * You are charged only if the value of Code is OK and the value of IsPrivacyNumber is true or false.
6058
+ * * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](https://help.aliyun.com/document_detail/154006.html).
6059
+ * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
6060
+ * ### [](#qps)QPS limits
6061
+ * You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
6062
+ *
6063
+ * @param request PhoneNumberStatusForVirtualRequest
6064
+ * @return PhoneNumberStatusForVirtualResponse
5477
6065
  */
5478
6066
  async phoneNumberStatusForVirtual(request: PhoneNumberStatusForVirtualRequest): Promise<PhoneNumberStatusForVirtualResponse> {
5479
6067
  let runtime = new $Util.RuntimeOptions({ });
@@ -5481,15 +6069,17 @@ export default class Client extends OpenApi {
5481
6069
  }
5482
6070
 
5483
6071
  /**
5484
- * * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
5485
- * * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](~~154006~~).
5486
- * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
5487
- * ### [](#qps)QPS limits
5488
- * You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
5489
- *
5490
- * @param request PhoneNumberStatusForVoiceRequest
5491
- * @param runtime runtime options for this request RuntimeOptions
5492
- * @return PhoneNumberStatusForVoiceResponse
6072
+ * @summary Queries the real-time service state of a phone number. The state includes NORMAL, SHUTDOWN, and NOT_EXIST. You can choose an encryption method for your phone number query, including plaintext, MD5, and SHA256.
6073
+ *
6074
+ * @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
6075
+ * * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](https://help.aliyun.com/document_detail/154006.html).
6076
+ * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
6077
+ * ### [](#qps)QPS limits
6078
+ * You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
6079
+ *
6080
+ * @param request PhoneNumberStatusForVoiceRequest
6081
+ * @param runtime runtime options for this request RuntimeOptions
6082
+ * @return PhoneNumberStatusForVoiceResponse
5493
6083
  */
5494
6084
  async phoneNumberStatusForVoiceWithOptions(request: PhoneNumberStatusForVoiceRequest, runtime: $Util.RuntimeOptions): Promise<PhoneNumberStatusForVoiceResponse> {
5495
6085
  Util.validateModel(request);
@@ -5536,20 +6126,29 @@ export default class Client extends OpenApi {
5536
6126
  }
5537
6127
 
5538
6128
  /**
5539
- * * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
5540
- * * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](~~154006~~).
5541
- * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
5542
- * ### [](#qps)QPS limits
5543
- * You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
5544
- *
5545
- * @param request PhoneNumberStatusForVoiceRequest
5546
- * @return PhoneNumberStatusForVoiceResponse
6129
+ * @summary Queries the real-time service state of a phone number. The state includes NORMAL, SHUTDOWN, and NOT_EXIST. You can choose an encryption method for your phone number query, including plaintext, MD5, and SHA256.
6130
+ *
6131
+ * @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
6132
+ * * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](https://help.aliyun.com/document_detail/154006.html).
6133
+ * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
6134
+ * ### [](#qps)QPS limits
6135
+ * You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
6136
+ *
6137
+ * @param request PhoneNumberStatusForVoiceRequest
6138
+ * @return PhoneNumberStatusForVoiceResponse
5547
6139
  */
5548
6140
  async phoneNumberStatusForVoice(request: PhoneNumberStatusForVoiceRequest): Promise<PhoneNumberStatusForVoiceResponse> {
5549
6141
  let runtime = new $Util.RuntimeOptions({ });
5550
6142
  return await this.phoneNumberStatusForVoiceWithOptions(request, runtime);
5551
6143
  }
5552
6144
 
6145
+ /**
6146
+ * @summary Queries available authorization codes.
6147
+ *
6148
+ * @param request QueryAvailableAuthCodeRequest
6149
+ * @param runtime runtime options for this request RuntimeOptions
6150
+ * @return QueryAvailableAuthCodeResponse
6151
+ */
5553
6152
  async queryAvailableAuthCodeWithOptions(request: QueryAvailableAuthCodeRequest, runtime: $Util.RuntimeOptions): Promise<QueryAvailableAuthCodeResponse> {
5554
6153
  Util.validateModel(request);
5555
6154
  let query = { };
@@ -5586,11 +6185,24 @@ export default class Client extends OpenApi {
5586
6185
  return $tea.cast<QueryAvailableAuthCodeResponse>(await this.callApi(params, req, runtime), new QueryAvailableAuthCodeResponse({}));
5587
6186
  }
5588
6187
 
6188
+ /**
6189
+ * @summary Queries available authorization codes.
6190
+ *
6191
+ * @param request QueryAvailableAuthCodeRequest
6192
+ * @return QueryAvailableAuthCodeResponse
6193
+ */
5589
6194
  async queryAvailableAuthCode(request: QueryAvailableAuthCodeRequest): Promise<QueryAvailableAuthCodeResponse> {
5590
6195
  let runtime = new $Util.RuntimeOptions({ });
5591
6196
  return await this.queryAvailableAuthCodeWithOptions(request, runtime);
5592
6197
  }
5593
6198
 
6199
+ /**
6200
+ * @summary 在网时长专用接口
6201
+ *
6202
+ * @param request QueryPhoneNumberOnlineTimeRequest
6203
+ * @param runtime runtime options for this request RuntimeOptions
6204
+ * @return QueryPhoneNumberOnlineTimeResponse
6205
+ */
5594
6206
  async queryPhoneNumberOnlineTimeWithOptions(request: QueryPhoneNumberOnlineTimeRequest, runtime: $Util.RuntimeOptions): Promise<QueryPhoneNumberOnlineTimeResponse> {
5595
6207
  Util.validateModel(request);
5596
6208
  let query = { };
@@ -5635,11 +6247,24 @@ export default class Client extends OpenApi {
5635
6247
  return $tea.cast<QueryPhoneNumberOnlineTimeResponse>(await this.callApi(params, req, runtime), new QueryPhoneNumberOnlineTimeResponse({}));
5636
6248
  }
5637
6249
 
6250
+ /**
6251
+ * @summary 在网时长专用接口
6252
+ *
6253
+ * @param request QueryPhoneNumberOnlineTimeRequest
6254
+ * @return QueryPhoneNumberOnlineTimeResponse
6255
+ */
5638
6256
  async queryPhoneNumberOnlineTime(request: QueryPhoneNumberOnlineTimeRequest): Promise<QueryPhoneNumberOnlineTimeResponse> {
5639
6257
  let runtime = new $Util.RuntimeOptions({ });
5640
6258
  return await this.queryPhoneNumberOnlineTimeWithOptions(request, runtime);
5641
6259
  }
5642
6260
 
6261
+ /**
6262
+ * @summary 二次号携号转网号码查询
6263
+ *
6264
+ * @param request QueryPhoneTwiceTelVerifyRequest
6265
+ * @param runtime runtime options for this request RuntimeOptions
6266
+ * @return QueryPhoneTwiceTelVerifyResponse
6267
+ */
5643
6268
  async queryPhoneTwiceTelVerifyWithOptions(request: QueryPhoneTwiceTelVerifyRequest, runtime: $Util.RuntimeOptions): Promise<QueryPhoneTwiceTelVerifyResponse> {
5644
6269
  Util.validateModel(request);
5645
6270
  let query = { };
@@ -5688,11 +6313,24 @@ export default class Client extends OpenApi {
5688
6313
  return $tea.cast<QueryPhoneTwiceTelVerifyResponse>(await this.callApi(params, req, runtime), new QueryPhoneTwiceTelVerifyResponse({}));
5689
6314
  }
5690
6315
 
6316
+ /**
6317
+ * @summary 二次号携号转网号码查询
6318
+ *
6319
+ * @param request QueryPhoneTwiceTelVerifyRequest
6320
+ * @return QueryPhoneTwiceTelVerifyResponse
6321
+ */
5691
6322
  async queryPhoneTwiceTelVerify(request: QueryPhoneTwiceTelVerifyRequest): Promise<QueryPhoneTwiceTelVerifyResponse> {
5692
6323
  let runtime = new $Util.RuntimeOptions({ });
5693
6324
  return await this.queryPhoneTwiceTelVerifyWithOptions(request, runtime);
5694
6325
  }
5695
6326
 
6327
+ /**
6328
+ * @summary Queries tag application rules.
6329
+ *
6330
+ * @param request QueryTagApplyRuleRequest
6331
+ * @param runtime runtime options for this request RuntimeOptions
6332
+ * @return QueryTagApplyRuleResponse
6333
+ */
5696
6334
  async queryTagApplyRuleWithOptions(request: QueryTagApplyRuleRequest, runtime: $Util.RuntimeOptions): Promise<QueryTagApplyRuleResponse> {
5697
6335
  Util.validateModel(request);
5698
6336
  let query = { };
@@ -5729,11 +6367,24 @@ export default class Client extends OpenApi {
5729
6367
  return $tea.cast<QueryTagApplyRuleResponse>(await this.callApi(params, req, runtime), new QueryTagApplyRuleResponse({}));
5730
6368
  }
5731
6369
 
6370
+ /**
6371
+ * @summary Queries tag application rules.
6372
+ *
6373
+ * @param request QueryTagApplyRuleRequest
6374
+ * @return QueryTagApplyRuleResponse
6375
+ */
5732
6376
  async queryTagApplyRule(request: QueryTagApplyRuleRequest): Promise<QueryTagApplyRuleResponse> {
5733
6377
  let runtime = new $Util.RuntimeOptions({ });
5734
6378
  return await this.queryTagApplyRuleWithOptions(request, runtime);
5735
6379
  }
5736
6380
 
6381
+ /**
6382
+ * @summary Queries information about tags.
6383
+ *
6384
+ * @param request QueryTagInfoBySelectionRequest
6385
+ * @param runtime runtime options for this request RuntimeOptions
6386
+ * @return QueryTagInfoBySelectionResponse
6387
+ */
5737
6388
  async queryTagInfoBySelectionWithOptions(request: QueryTagInfoBySelectionRequest, runtime: $Util.RuntimeOptions): Promise<QueryTagInfoBySelectionResponse> {
5738
6389
  Util.validateModel(request);
5739
6390
  let query = { };
@@ -5778,11 +6429,24 @@ export default class Client extends OpenApi {
5778
6429
  return $tea.cast<QueryTagInfoBySelectionResponse>(await this.callApi(params, req, runtime), new QueryTagInfoBySelectionResponse({}));
5779
6430
  }
5780
6431
 
6432
+ /**
6433
+ * @summary Queries information about tags.
6434
+ *
6435
+ * @param request QueryTagInfoBySelectionRequest
6436
+ * @return QueryTagInfoBySelectionResponse
6437
+ */
5781
6438
  async queryTagInfoBySelection(request: QueryTagInfoBySelectionRequest): Promise<QueryTagInfoBySelectionResponse> {
5782
6439
  let runtime = new $Util.RuntimeOptions({ });
5783
6440
  return await this.queryTagInfoBySelectionWithOptions(request, runtime);
5784
6441
  }
5785
6442
 
6443
+ /**
6444
+ * @summary Queries a list of tags by page.
6445
+ *
6446
+ * @param request QueryTagListPageRequest
6447
+ * @param runtime runtime options for this request RuntimeOptions
6448
+ * @return QueryTagListPageResponse
6449
+ */
5786
6450
  async queryTagListPageWithOptions(request: QueryTagListPageRequest, runtime: $Util.RuntimeOptions): Promise<QueryTagListPageResponse> {
5787
6451
  Util.validateModel(request);
5788
6452
  let query = { };
@@ -5823,11 +6487,24 @@ export default class Client extends OpenApi {
5823
6487
  return $tea.cast<QueryTagListPageResponse>(await this.callApi(params, req, runtime), new QueryTagListPageResponse({}));
5824
6488
  }
5825
6489
 
6490
+ /**
6491
+ * @summary Queries a list of tags by page.
6492
+ *
6493
+ * @param request QueryTagListPageRequest
6494
+ * @return QueryTagListPageResponse
6495
+ */
5826
6496
  async queryTagListPage(request: QueryTagListPageRequest): Promise<QueryTagListPageResponse> {
5827
6497
  let runtime = new $Util.RuntimeOptions({ });
5828
6498
  return await this.queryTagListPageWithOptions(request, runtime);
5829
6499
  }
5830
6500
 
6501
+ /**
6502
+ * @summary Queries the usage statistics based on tag IDs.
6503
+ *
6504
+ * @param request QueryUsageStatisticsByTagIdRequest
6505
+ * @param runtime runtime options for this request RuntimeOptions
6506
+ * @return QueryUsageStatisticsByTagIdResponse
6507
+ */
5831
6508
  async queryUsageStatisticsByTagIdWithOptions(request: QueryUsageStatisticsByTagIdRequest, runtime: $Util.RuntimeOptions): Promise<QueryUsageStatisticsByTagIdResponse> {
5832
6509
  Util.validateModel(request);
5833
6510
  let query = { };
@@ -5880,21 +6557,29 @@ export default class Client extends OpenApi {
5880
6557
  return $tea.cast<QueryUsageStatisticsByTagIdResponse>(await this.callApi(params, req, runtime), new QueryUsageStatisticsByTagIdResponse({}));
5881
6558
  }
5882
6559
 
6560
+ /**
6561
+ * @summary Queries the usage statistics based on tag IDs.
6562
+ *
6563
+ * @param request QueryUsageStatisticsByTagIdRequest
6564
+ * @return QueryUsageStatisticsByTagIdResponse
6565
+ */
5883
6566
  async queryUsageStatisticsByTagId(request: QueryUsageStatisticsByTagIdRequest): Promise<QueryUsageStatisticsByTagIdResponse> {
5884
6567
  let runtime = new $Util.RuntimeOptions({ });
5885
6568
  return await this.queryUsageStatisticsByTagIdWithOptions(request, runtime);
5886
6569
  }
5887
6570
 
5888
6571
  /**
5889
- * * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
5890
- * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
5891
- * * You are charged only if the value of Code is OK and the value of IsConsistent is not 2.
5892
- * ### [](#qps)QPS limits
5893
- * You can call this operation up to 200 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
5894
- *
5895
- * @param request ThreeElementsVerificationRequest
5896
- * @param runtime runtime options for this request RuntimeOptions
5897
- * @return ThreeElementsVerificationResponse
6572
+ * @summary Verifies whether the name, phone number, and ID card number entered by a user belong to the same user.
6573
+ *
6574
+ * @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
6575
+ * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
6576
+ * * You are charged only if the value of Code is OK and the value of IsConsistent is not 2.
6577
+ * ### [](#qps)QPS limits
6578
+ * You can call this operation up to 200 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
6579
+ *
6580
+ * @param request ThreeElementsVerificationRequest
6581
+ * @param runtime runtime options for this request RuntimeOptions
6582
+ * @return ThreeElementsVerificationResponse
5898
6583
  */
5899
6584
  async threeElementsVerificationWithOptions(request: ThreeElementsVerificationRequest, runtime: $Util.RuntimeOptions): Promise<ThreeElementsVerificationResponse> {
5900
6585
  Util.validateModel(request);
@@ -5949,14 +6634,16 @@ export default class Client extends OpenApi {
5949
6634
  }
5950
6635
 
5951
6636
  /**
5952
- * * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
5953
- * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
5954
- * * You are charged only if the value of Code is OK and the value of IsConsistent is not 2.
5955
- * ### [](#qps)QPS limits
5956
- * You can call this operation up to 200 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
5957
- *
5958
- * @param request ThreeElementsVerificationRequest
5959
- * @return ThreeElementsVerificationResponse
6637
+ * @summary Verifies whether the name, phone number, and ID card number entered by a user belong to the same user.
6638
+ *
6639
+ * @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
6640
+ * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
6641
+ * * You are charged only if the value of Code is OK and the value of IsConsistent is not 2.
6642
+ * ### [](#qps)QPS limits
6643
+ * You can call this operation up to 200 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
6644
+ *
6645
+ * @param request ThreeElementsVerificationRequest
6646
+ * @return ThreeElementsVerificationResponse
5960
6647
  */
5961
6648
  async threeElementsVerification(request: ThreeElementsVerificationRequest): Promise<ThreeElementsVerificationResponse> {
5962
6649
  let runtime = new $Util.RuntimeOptions({ });
@@ -5964,15 +6651,17 @@ export default class Client extends OpenApi {
5964
6651
  }
5965
6652
 
5966
6653
  /**
5967
- * * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
5968
- * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
5969
- * * You are charged only if the value of Code is OK and the value of IsConsistent is not 2.
5970
- * ### [](#qps)QPS limits
5971
- * You can call this operation up to 200 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
5972
- *
5973
- * @param request TwoElementsVerificationRequest
5974
- * @param runtime runtime options for this request RuntimeOptions
5975
- * @return TwoElementsVerificationResponse
6654
+ * @summary Verifies whether the name and phone number entered by a user belong to the same user.
6655
+ *
6656
+ * @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
6657
+ * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
6658
+ * * You are charged only if the value of Code is OK and the value of IsConsistent is not 2.
6659
+ * ### [](#qps)QPS limits
6660
+ * You can call this operation up to 200 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
6661
+ *
6662
+ * @param request TwoElementsVerificationRequest
6663
+ * @param runtime runtime options for this request RuntimeOptions
6664
+ * @return TwoElementsVerificationResponse
5976
6665
  */
5977
6666
  async twoElementsVerificationWithOptions(request: TwoElementsVerificationRequest, runtime: $Util.RuntimeOptions): Promise<TwoElementsVerificationResponse> {
5978
6667
  Util.validateModel(request);
@@ -6023,20 +6712,173 @@ export default class Client extends OpenApi {
6023
6712
  }
6024
6713
 
6025
6714
  /**
6026
- * * Before you call this operation, make sure that you are familiar with the [billing](~~154751~~) of Cell Phone Number Service.
6027
- * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
6028
- * * You are charged only if the value of Code is OK and the value of IsConsistent is not 2.
6029
- * ### [](#qps)QPS limits
6030
- * You can call this operation up to 200 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
6031
- *
6032
- * @param request TwoElementsVerificationRequest
6033
- * @return TwoElementsVerificationResponse
6715
+ * @summary Verifies whether the name and phone number entered by a user belong to the same user.
6716
+ *
6717
+ * @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
6718
+ * * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
6719
+ * * You are charged only if the value of Code is OK and the value of IsConsistent is not 2.
6720
+ * ### [](#qps)QPS limits
6721
+ * You can call this operation up to 200 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
6722
+ *
6723
+ * @param request TwoElementsVerificationRequest
6724
+ * @return TwoElementsVerificationResponse
6034
6725
  */
6035
6726
  async twoElementsVerification(request: TwoElementsVerificationRequest): Promise<TwoElementsVerificationResponse> {
6036
6727
  let runtime = new $Util.RuntimeOptions({ });
6037
6728
  return await this.twoElementsVerificationWithOptions(request, runtime);
6038
6729
  }
6039
6730
 
6731
+ /**
6732
+ * @summary UAID采集
6733
+ *
6734
+ * @param request UAIDCollectionRequest
6735
+ * @param runtime runtime options for this request RuntimeOptions
6736
+ * @return UAIDCollectionResponse
6737
+ */
6738
+ async uAIDCollectionWithOptions(request: UAIDCollectionRequest, runtime: $Util.RuntimeOptions): Promise<UAIDCollectionResponse> {
6739
+ Util.validateModel(request);
6740
+ let query = { };
6741
+ if (!Util.isUnset(request.authCode)) {
6742
+ query["AuthCode"] = request.authCode;
6743
+ }
6744
+
6745
+ if (!Util.isUnset(request.carrier)) {
6746
+ query["Carrier"] = request.carrier;
6747
+ }
6748
+
6749
+ if (!Util.isUnset(request.ip)) {
6750
+ query["Ip"] = request.ip;
6751
+ }
6752
+
6753
+ if (!Util.isUnset(request.outId)) {
6754
+ query["OutId"] = request.outId;
6755
+ }
6756
+
6757
+ if (!Util.isUnset(request.ownerId)) {
6758
+ query["OwnerId"] = request.ownerId;
6759
+ }
6760
+
6761
+ if (!Util.isUnset(request.province)) {
6762
+ query["Province"] = request.province;
6763
+ }
6764
+
6765
+ if (!Util.isUnset(request.resourceOwnerAccount)) {
6766
+ query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
6767
+ }
6768
+
6769
+ if (!Util.isUnset(request.resourceOwnerId)) {
6770
+ query["ResourceOwnerId"] = request.resourceOwnerId;
6771
+ }
6772
+
6773
+ if (!Util.isUnset(request.token)) {
6774
+ query["Token"] = request.token;
6775
+ }
6776
+
6777
+ if (!Util.isUnset(request.userGrantId)) {
6778
+ query["UserGrantId"] = request.userGrantId;
6779
+ }
6780
+
6781
+ let req = new $OpenApi.OpenApiRequest({
6782
+ query: OpenApiUtil.query(query),
6783
+ });
6784
+ let params = new $OpenApi.Params({
6785
+ action: "UAIDCollection",
6786
+ version: "2020-02-17",
6787
+ protocol: "HTTPS",
6788
+ pathname: "/",
6789
+ method: "POST",
6790
+ authType: "AK",
6791
+ style: "RPC",
6792
+ reqBodyType: "formData",
6793
+ bodyType: "json",
6794
+ });
6795
+ return $tea.cast<UAIDCollectionResponse>(await this.callApi(params, req, runtime), new UAIDCollectionResponse({}));
6796
+ }
6797
+
6798
+ /**
6799
+ * @summary UAID采集
6800
+ *
6801
+ * @param request UAIDCollectionRequest
6802
+ * @return UAIDCollectionResponse
6803
+ */
6804
+ async uAIDCollection(request: UAIDCollectionRequest): Promise<UAIDCollectionResponse> {
6805
+ let runtime = new $Util.RuntimeOptions({ });
6806
+ return await this.uAIDCollectionWithOptions(request, runtime);
6807
+ }
6808
+
6809
+ /**
6810
+ * @summary uaid号码转换服务
6811
+ *
6812
+ * @param request UAIDConversionRequest
6813
+ * @param runtime runtime options for this request RuntimeOptions
6814
+ * @return UAIDConversionResponse
6815
+ */
6816
+ async uAIDConversionWithOptions(request: UAIDConversionRequest, runtime: $Util.RuntimeOptions): Promise<UAIDConversionResponse> {
6817
+ Util.validateModel(request);
6818
+ let query = { };
6819
+ if (!Util.isUnset(request.authCode)) {
6820
+ query["AuthCode"] = request.authCode;
6821
+ }
6822
+
6823
+ if (!Util.isUnset(request.carrier)) {
6824
+ query["Carrier"] = request.carrier;
6825
+ }
6826
+
6827
+ if (!Util.isUnset(request.outId)) {
6828
+ query["OutId"] = request.outId;
6829
+ }
6830
+
6831
+ if (!Util.isUnset(request.ownerId)) {
6832
+ query["OwnerId"] = request.ownerId;
6833
+ }
6834
+
6835
+ if (!Util.isUnset(request.resourceOwnerAccount)) {
6836
+ query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
6837
+ }
6838
+
6839
+ if (!Util.isUnset(request.resourceOwnerId)) {
6840
+ query["ResourceOwnerId"] = request.resourceOwnerId;
6841
+ }
6842
+
6843
+ if (!Util.isUnset(request.uaidList)) {
6844
+ query["UaidList"] = request.uaidList;
6845
+ }
6846
+
6847
+ let req = new $OpenApi.OpenApiRequest({
6848
+ query: OpenApiUtil.query(query),
6849
+ });
6850
+ let params = new $OpenApi.Params({
6851
+ action: "UAIDConversion",
6852
+ version: "2020-02-17",
6853
+ protocol: "HTTPS",
6854
+ pathname: "/",
6855
+ method: "POST",
6856
+ authType: "AK",
6857
+ style: "RPC",
6858
+ reqBodyType: "formData",
6859
+ bodyType: "json",
6860
+ });
6861
+ return $tea.cast<UAIDConversionResponse>(await this.callApi(params, req, runtime), new UAIDConversionResponse({}));
6862
+ }
6863
+
6864
+ /**
6865
+ * @summary uaid号码转换服务
6866
+ *
6867
+ * @param request UAIDConversionRequest
6868
+ * @return UAIDConversionResponse
6869
+ */
6870
+ async uAIDConversion(request: UAIDConversionRequest): Promise<UAIDConversionResponse> {
6871
+ let runtime = new $Util.RuntimeOptions({ });
6872
+ return await this.uAIDConversionWithOptions(request, runtime);
6873
+ }
6874
+
6875
+ /**
6876
+ * @summary 获取UAID
6877
+ *
6878
+ * @param request UAIDVerificationRequest
6879
+ * @param runtime runtime options for this request RuntimeOptions
6880
+ * @return UAIDVerificationResponse
6881
+ */
6040
6882
  async uAIDVerificationWithOptions(request: UAIDVerificationRequest, runtime: $Util.RuntimeOptions): Promise<UAIDVerificationResponse> {
6041
6883
  Util.validateModel(request);
6042
6884
  let query = { };
@@ -6097,6 +6939,12 @@ export default class Client extends OpenApi {
6097
6939
  return $tea.cast<UAIDVerificationResponse>(await this.callApi(params, req, runtime), new UAIDVerificationResponse({}));
6098
6940
  }
6099
6941
 
6942
+ /**
6943
+ * @summary 获取UAID
6944
+ *
6945
+ * @param request UAIDVerificationRequest
6946
+ * @return UAIDVerificationResponse
6947
+ */
6100
6948
  async uAIDVerification(request: UAIDVerificationRequest): Promise<UAIDVerificationResponse> {
6101
6949
  let runtime = new $Util.RuntimeOptions({ });
6102
6950
  return await this.uAIDVerificationWithOptions(request, runtime);