@alicloud/dytnsapi20200217 1.0.9 → 1.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +383 -2
- package/dist/client.js +887 -119
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +1204 -247
package/src/client.ts
CHANGED
|
@@ -356,6 +356,93 @@ export class DescribePhoneNumberOnlineTimeResponse extends $tea.Model {
|
|
|
356
356
|
}
|
|
357
357
|
}
|
|
358
358
|
|
|
359
|
+
export class DescribePhoneNumberOperatorAttributeRequest extends $tea.Model {
|
|
360
|
+
authCode?: string;
|
|
361
|
+
inputNumber?: string;
|
|
362
|
+
mask?: string;
|
|
363
|
+
ownerId?: number;
|
|
364
|
+
resourceOwnerAccount?: string;
|
|
365
|
+
resourceOwnerId?: number;
|
|
366
|
+
static names(): { [key: string]: string } {
|
|
367
|
+
return {
|
|
368
|
+
authCode: 'AuthCode',
|
|
369
|
+
inputNumber: 'InputNumber',
|
|
370
|
+
mask: 'Mask',
|
|
371
|
+
ownerId: 'OwnerId',
|
|
372
|
+
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
373
|
+
resourceOwnerId: 'ResourceOwnerId',
|
|
374
|
+
};
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
static types(): { [key: string]: any } {
|
|
378
|
+
return {
|
|
379
|
+
authCode: 'string',
|
|
380
|
+
inputNumber: 'string',
|
|
381
|
+
mask: 'string',
|
|
382
|
+
ownerId: 'number',
|
|
383
|
+
resourceOwnerAccount: 'string',
|
|
384
|
+
resourceOwnerId: 'number',
|
|
385
|
+
};
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
constructor(map?: { [key: string]: any }) {
|
|
389
|
+
super(map);
|
|
390
|
+
}
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
export class DescribePhoneNumberOperatorAttributeResponseBody extends $tea.Model {
|
|
394
|
+
code?: string;
|
|
395
|
+
data?: DescribePhoneNumberOperatorAttributeResponseBodyData;
|
|
396
|
+
message?: string;
|
|
397
|
+
requestId?: string;
|
|
398
|
+
static names(): { [key: string]: string } {
|
|
399
|
+
return {
|
|
400
|
+
code: 'Code',
|
|
401
|
+
data: 'Data',
|
|
402
|
+
message: 'Message',
|
|
403
|
+
requestId: 'RequestId',
|
|
404
|
+
};
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
static types(): { [key: string]: any } {
|
|
408
|
+
return {
|
|
409
|
+
code: 'string',
|
|
410
|
+
data: DescribePhoneNumberOperatorAttributeResponseBodyData,
|
|
411
|
+
message: 'string',
|
|
412
|
+
requestId: 'string',
|
|
413
|
+
};
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
constructor(map?: { [key: string]: any }) {
|
|
417
|
+
super(map);
|
|
418
|
+
}
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
export class DescribePhoneNumberOperatorAttributeResponse extends $tea.Model {
|
|
422
|
+
headers: { [key: string]: string };
|
|
423
|
+
statusCode: number;
|
|
424
|
+
body: DescribePhoneNumberOperatorAttributeResponseBody;
|
|
425
|
+
static names(): { [key: string]: string } {
|
|
426
|
+
return {
|
|
427
|
+
headers: 'headers',
|
|
428
|
+
statusCode: 'statusCode',
|
|
429
|
+
body: 'body',
|
|
430
|
+
};
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
static types(): { [key: string]: any } {
|
|
434
|
+
return {
|
|
435
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
436
|
+
statusCode: 'number',
|
|
437
|
+
body: DescribePhoneNumberOperatorAttributeResponseBody,
|
|
438
|
+
};
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
constructor(map?: { [key: string]: any }) {
|
|
442
|
+
super(map);
|
|
443
|
+
}
|
|
444
|
+
}
|
|
445
|
+
|
|
359
446
|
export class DescribePhoneNumberResaleRequest extends $tea.Model {
|
|
360
447
|
ownerId?: number;
|
|
361
448
|
phoneNumber?: string;
|
|
@@ -695,44 +782,18 @@ export class PhoneNumberEncryptResponse extends $tea.Model {
|
|
|
695
782
|
}
|
|
696
783
|
}
|
|
697
784
|
|
|
698
|
-
export class
|
|
699
|
-
headers: { [key: string]: string };
|
|
700
|
-
statusCode: number;
|
|
701
|
-
static names(): { [key: string]: string } {
|
|
702
|
-
return {
|
|
703
|
-
headers: 'headers',
|
|
704
|
-
statusCode: 'statusCode',
|
|
705
|
-
};
|
|
706
|
-
}
|
|
707
|
-
|
|
708
|
-
static types(): { [key: string]: any } {
|
|
709
|
-
return {
|
|
710
|
-
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
711
|
-
statusCode: 'number',
|
|
712
|
-
};
|
|
713
|
-
}
|
|
714
|
-
|
|
715
|
-
constructor(map?: { [key: string]: any }) {
|
|
716
|
-
super(map);
|
|
717
|
-
}
|
|
718
|
-
}
|
|
719
|
-
|
|
720
|
-
export class ThreeElementsVerificationRequest extends $tea.Model {
|
|
785
|
+
export class PhoneNumberStatusForAccountRequest extends $tea.Model {
|
|
721
786
|
authCode?: string;
|
|
722
|
-
certCode?: string;
|
|
723
787
|
inputNumber?: string;
|
|
724
788
|
mask?: string;
|
|
725
|
-
name?: string;
|
|
726
789
|
ownerId?: number;
|
|
727
790
|
resourceOwnerAccount?: string;
|
|
728
791
|
resourceOwnerId?: number;
|
|
729
792
|
static names(): { [key: string]: string } {
|
|
730
793
|
return {
|
|
731
794
|
authCode: 'AuthCode',
|
|
732
|
-
certCode: 'CertCode',
|
|
733
795
|
inputNumber: 'InputNumber',
|
|
734
796
|
mask: 'Mask',
|
|
735
|
-
name: 'Name',
|
|
736
797
|
ownerId: 'OwnerId',
|
|
737
798
|
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
738
799
|
resourceOwnerId: 'ResourceOwnerId',
|
|
@@ -742,10 +803,8 @@ export class ThreeElementsVerificationRequest extends $tea.Model {
|
|
|
742
803
|
static types(): { [key: string]: any } {
|
|
743
804
|
return {
|
|
744
805
|
authCode: 'string',
|
|
745
|
-
certCode: 'string',
|
|
746
806
|
inputNumber: 'string',
|
|
747
807
|
mask: 'string',
|
|
748
|
-
name: 'string',
|
|
749
808
|
ownerId: 'number',
|
|
750
809
|
resourceOwnerAccount: 'string',
|
|
751
810
|
resourceOwnerId: 'number',
|
|
@@ -757,9 +816,9 @@ export class ThreeElementsVerificationRequest extends $tea.Model {
|
|
|
757
816
|
}
|
|
758
817
|
}
|
|
759
818
|
|
|
760
|
-
export class
|
|
819
|
+
export class PhoneNumberStatusForAccountResponseBody extends $tea.Model {
|
|
761
820
|
code?: string;
|
|
762
|
-
data?:
|
|
821
|
+
data?: PhoneNumberStatusForAccountResponseBodyData;
|
|
763
822
|
message?: string;
|
|
764
823
|
requestId?: string;
|
|
765
824
|
static names(): { [key: string]: string } {
|
|
@@ -774,7 +833,7 @@ export class ThreeElementsVerificationResponseBody extends $tea.Model {
|
|
|
774
833
|
static types(): { [key: string]: any } {
|
|
775
834
|
return {
|
|
776
835
|
code: 'string',
|
|
777
|
-
data:
|
|
836
|
+
data: PhoneNumberStatusForAccountResponseBodyData,
|
|
778
837
|
message: 'string',
|
|
779
838
|
requestId: 'string',
|
|
780
839
|
};
|
|
@@ -785,10 +844,10 @@ export class ThreeElementsVerificationResponseBody extends $tea.Model {
|
|
|
785
844
|
}
|
|
786
845
|
}
|
|
787
846
|
|
|
788
|
-
export class
|
|
847
|
+
export class PhoneNumberStatusForAccountResponse extends $tea.Model {
|
|
789
848
|
headers: { [key: string]: string };
|
|
790
849
|
statusCode: number;
|
|
791
|
-
body:
|
|
850
|
+
body: PhoneNumberStatusForAccountResponseBody;
|
|
792
851
|
static names(): { [key: string]: string } {
|
|
793
852
|
return {
|
|
794
853
|
headers: 'headers',
|
|
@@ -801,7 +860,7 @@ export class ThreeElementsVerificationResponse extends $tea.Model {
|
|
|
801
860
|
return {
|
|
802
861
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
803
862
|
statusCode: 'number',
|
|
804
|
-
body:
|
|
863
|
+
body: PhoneNumberStatusForAccountResponseBody,
|
|
805
864
|
};
|
|
806
865
|
}
|
|
807
866
|
|
|
@@ -810,11 +869,10 @@ export class ThreeElementsVerificationResponse extends $tea.Model {
|
|
|
810
869
|
}
|
|
811
870
|
}
|
|
812
871
|
|
|
813
|
-
export class
|
|
872
|
+
export class PhoneNumberStatusForRealRequest extends $tea.Model {
|
|
814
873
|
authCode?: string;
|
|
815
874
|
inputNumber?: string;
|
|
816
875
|
mask?: string;
|
|
817
|
-
name?: string;
|
|
818
876
|
ownerId?: number;
|
|
819
877
|
resourceOwnerAccount?: string;
|
|
820
878
|
resourceOwnerId?: number;
|
|
@@ -823,7 +881,6 @@ export class TwoElementsVerificationRequest extends $tea.Model {
|
|
|
823
881
|
authCode: 'AuthCode',
|
|
824
882
|
inputNumber: 'InputNumber',
|
|
825
883
|
mask: 'Mask',
|
|
826
|
-
name: 'Name',
|
|
827
884
|
ownerId: 'OwnerId',
|
|
828
885
|
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
829
886
|
resourceOwnerId: 'ResourceOwnerId',
|
|
@@ -835,7 +892,6 @@ export class TwoElementsVerificationRequest extends $tea.Model {
|
|
|
835
892
|
authCode: 'string',
|
|
836
893
|
inputNumber: 'string',
|
|
837
894
|
mask: 'string',
|
|
838
|
-
name: 'string',
|
|
839
895
|
ownerId: 'number',
|
|
840
896
|
resourceOwnerAccount: 'string',
|
|
841
897
|
resourceOwnerId: 'number',
|
|
@@ -847,9 +903,9 @@ export class TwoElementsVerificationRequest extends $tea.Model {
|
|
|
847
903
|
}
|
|
848
904
|
}
|
|
849
905
|
|
|
850
|
-
export class
|
|
906
|
+
export class PhoneNumberStatusForRealResponseBody extends $tea.Model {
|
|
851
907
|
code?: string;
|
|
852
|
-
data?:
|
|
908
|
+
data?: PhoneNumberStatusForRealResponseBodyData;
|
|
853
909
|
message?: string;
|
|
854
910
|
requestId?: string;
|
|
855
911
|
static names(): { [key: string]: string } {
|
|
@@ -864,7 +920,7 @@ export class TwoElementsVerificationResponseBody extends $tea.Model {
|
|
|
864
920
|
static types(): { [key: string]: any } {
|
|
865
921
|
return {
|
|
866
922
|
code: 'string',
|
|
867
|
-
data:
|
|
923
|
+
data: PhoneNumberStatusForRealResponseBodyData,
|
|
868
924
|
message: 'string',
|
|
869
925
|
requestId: 'string',
|
|
870
926
|
};
|
|
@@ -875,10 +931,10 @@ export class TwoElementsVerificationResponseBody extends $tea.Model {
|
|
|
875
931
|
}
|
|
876
932
|
}
|
|
877
933
|
|
|
878
|
-
export class
|
|
934
|
+
export class PhoneNumberStatusForRealResponse extends $tea.Model {
|
|
879
935
|
headers: { [key: string]: string };
|
|
880
936
|
statusCode: number;
|
|
881
|
-
body:
|
|
937
|
+
body: PhoneNumberStatusForRealResponseBody;
|
|
882
938
|
static names(): { [key: string]: string } {
|
|
883
939
|
return {
|
|
884
940
|
headers: 'headers',
|
|
@@ -891,7 +947,7 @@ export class TwoElementsVerificationResponse extends $tea.Model {
|
|
|
891
947
|
return {
|
|
892
948
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
893
949
|
statusCode: 'number',
|
|
894
|
-
body:
|
|
950
|
+
body: PhoneNumberStatusForRealResponseBody,
|
|
895
951
|
};
|
|
896
952
|
}
|
|
897
953
|
|
|
@@ -900,20 +956,32 @@ export class TwoElementsVerificationResponse extends $tea.Model {
|
|
|
900
956
|
}
|
|
901
957
|
}
|
|
902
958
|
|
|
903
|
-
export class
|
|
904
|
-
|
|
905
|
-
|
|
959
|
+
export class PhoneNumberStatusForSmsRequest extends $tea.Model {
|
|
960
|
+
authCode?: string;
|
|
961
|
+
inputNumber?: string;
|
|
962
|
+
mask?: string;
|
|
963
|
+
ownerId?: number;
|
|
964
|
+
resourceOwnerAccount?: string;
|
|
965
|
+
resourceOwnerId?: number;
|
|
906
966
|
static names(): { [key: string]: string } {
|
|
907
967
|
return {
|
|
908
|
-
|
|
909
|
-
|
|
968
|
+
authCode: 'AuthCode',
|
|
969
|
+
inputNumber: 'InputNumber',
|
|
970
|
+
mask: 'Mask',
|
|
971
|
+
ownerId: 'OwnerId',
|
|
972
|
+
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
973
|
+
resourceOwnerId: 'ResourceOwnerId',
|
|
910
974
|
};
|
|
911
975
|
}
|
|
912
976
|
|
|
913
977
|
static types(): { [key: string]: any } {
|
|
914
978
|
return {
|
|
915
|
-
|
|
916
|
-
|
|
979
|
+
authCode: 'string',
|
|
980
|
+
inputNumber: 'string',
|
|
981
|
+
mask: 'string',
|
|
982
|
+
ownerId: 'number',
|
|
983
|
+
resourceOwnerAccount: 'string',
|
|
984
|
+
resourceOwnerId: 'number',
|
|
917
985
|
};
|
|
918
986
|
}
|
|
919
987
|
|
|
@@ -922,20 +990,26 @@ export class DescribeEmptyNumberDetectResponseBodyData extends $tea.Model {
|
|
|
922
990
|
}
|
|
923
991
|
}
|
|
924
992
|
|
|
925
|
-
export class
|
|
993
|
+
export class PhoneNumberStatusForSmsResponseBody extends $tea.Model {
|
|
926
994
|
code?: string;
|
|
927
|
-
|
|
995
|
+
data?: PhoneNumberStatusForSmsResponseBodyData;
|
|
996
|
+
message?: string;
|
|
997
|
+
requestId?: string;
|
|
928
998
|
static names(): { [key: string]: string } {
|
|
929
999
|
return {
|
|
930
1000
|
code: 'Code',
|
|
931
|
-
|
|
1001
|
+
data: 'Data',
|
|
1002
|
+
message: 'Message',
|
|
1003
|
+
requestId: 'RequestId',
|
|
932
1004
|
};
|
|
933
1005
|
}
|
|
934
1006
|
|
|
935
1007
|
static types(): { [key: string]: any } {
|
|
936
1008
|
return {
|
|
937
1009
|
code: 'string',
|
|
938
|
-
|
|
1010
|
+
data: PhoneNumberStatusForSmsResponseBodyData,
|
|
1011
|
+
message: 'string',
|
|
1012
|
+
requestId: 'string',
|
|
939
1013
|
};
|
|
940
1014
|
}
|
|
941
1015
|
|
|
@@ -944,32 +1018,23 @@ export class DescribePhoneNumberAnalysisResponseBodyData extends $tea.Model {
|
|
|
944
1018
|
}
|
|
945
1019
|
}
|
|
946
1020
|
|
|
947
|
-
export class
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
isNumberPortability?: boolean;
|
|
952
|
-
numberSegment?: number;
|
|
953
|
-
province?: string;
|
|
1021
|
+
export class PhoneNumberStatusForSmsResponse extends $tea.Model {
|
|
1022
|
+
headers: { [key: string]: string };
|
|
1023
|
+
statusCode: number;
|
|
1024
|
+
body: PhoneNumberStatusForSmsResponseBody;
|
|
954
1025
|
static names(): { [key: string]: string } {
|
|
955
1026
|
return {
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
isNumberPortability: 'IsNumberPortability',
|
|
960
|
-
numberSegment: 'NumberSegment',
|
|
961
|
-
province: 'Province',
|
|
1027
|
+
headers: 'headers',
|
|
1028
|
+
statusCode: 'statusCode',
|
|
1029
|
+
body: 'body',
|
|
962
1030
|
};
|
|
963
1031
|
}
|
|
964
1032
|
|
|
965
1033
|
static types(): { [key: string]: any } {
|
|
966
1034
|
return {
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
isNumberPortability: 'boolean',
|
|
971
|
-
numberSegment: 'number',
|
|
972
|
-
province: 'string',
|
|
1035
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1036
|
+
statusCode: 'number',
|
|
1037
|
+
body: PhoneNumberStatusForSmsResponseBody,
|
|
973
1038
|
};
|
|
974
1039
|
}
|
|
975
1040
|
|
|
@@ -978,17 +1043,32 @@ export class DescribePhoneNumberAttributeResponseBodyPhoneNumberAttribute extend
|
|
|
978
1043
|
}
|
|
979
1044
|
}
|
|
980
1045
|
|
|
981
|
-
export class
|
|
982
|
-
|
|
1046
|
+
export class PhoneNumberStatusForVirtualRequest extends $tea.Model {
|
|
1047
|
+
authCode?: string;
|
|
1048
|
+
inputNumber?: string;
|
|
1049
|
+
mask?: string;
|
|
1050
|
+
ownerId?: number;
|
|
1051
|
+
resourceOwnerAccount?: string;
|
|
1052
|
+
resourceOwnerId?: number;
|
|
983
1053
|
static names(): { [key: string]: string } {
|
|
984
1054
|
return {
|
|
985
|
-
|
|
1055
|
+
authCode: 'AuthCode',
|
|
1056
|
+
inputNumber: 'InputNumber',
|
|
1057
|
+
mask: 'Mask',
|
|
1058
|
+
ownerId: 'OwnerId',
|
|
1059
|
+
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
1060
|
+
resourceOwnerId: 'ResourceOwnerId',
|
|
986
1061
|
};
|
|
987
1062
|
}
|
|
988
1063
|
|
|
989
1064
|
static types(): { [key: string]: any } {
|
|
990
1065
|
return {
|
|
991
|
-
|
|
1066
|
+
authCode: 'string',
|
|
1067
|
+
inputNumber: 'string',
|
|
1068
|
+
mask: 'string',
|
|
1069
|
+
ownerId: 'number',
|
|
1070
|
+
resourceOwnerAccount: 'string',
|
|
1071
|
+
resourceOwnerId: 'number',
|
|
992
1072
|
};
|
|
993
1073
|
}
|
|
994
1074
|
|
|
@@ -997,20 +1077,26 @@ export class DescribePhoneNumberOnlineTimeResponseBodyData extends $tea.Model {
|
|
|
997
1077
|
}
|
|
998
1078
|
}
|
|
999
1079
|
|
|
1000
|
-
export class
|
|
1001
|
-
|
|
1002
|
-
|
|
1080
|
+
export class PhoneNumberStatusForVirtualResponseBody extends $tea.Model {
|
|
1081
|
+
code?: string;
|
|
1082
|
+
data?: PhoneNumberStatusForVirtualResponseBodyData;
|
|
1083
|
+
message?: string;
|
|
1084
|
+
requestId?: string;
|
|
1003
1085
|
static names(): { [key: string]: string } {
|
|
1004
1086
|
return {
|
|
1005
|
-
|
|
1006
|
-
|
|
1087
|
+
code: 'Code',
|
|
1088
|
+
data: 'Data',
|
|
1089
|
+
message: 'Message',
|
|
1090
|
+
requestId: 'RequestId',
|
|
1007
1091
|
};
|
|
1008
1092
|
}
|
|
1009
1093
|
|
|
1010
1094
|
static types(): { [key: string]: any } {
|
|
1011
1095
|
return {
|
|
1012
|
-
|
|
1013
|
-
|
|
1096
|
+
code: 'string',
|
|
1097
|
+
data: PhoneNumberStatusForVirtualResponseBodyData,
|
|
1098
|
+
message: 'string',
|
|
1099
|
+
requestId: 'string',
|
|
1014
1100
|
};
|
|
1015
1101
|
}
|
|
1016
1102
|
|
|
@@ -1019,23 +1105,23 @@ export class DescribePhoneNumberResaleResponseBodyTwiceTelVerify extends $tea.Mo
|
|
|
1019
1105
|
}
|
|
1020
1106
|
}
|
|
1021
1107
|
|
|
1022
|
-
export class
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1108
|
+
export class PhoneNumberStatusForVirtualResponse extends $tea.Model {
|
|
1109
|
+
headers: { [key: string]: string };
|
|
1110
|
+
statusCode: number;
|
|
1111
|
+
body: PhoneNumberStatusForVirtualResponseBody;
|
|
1026
1112
|
static names(): { [key: string]: string } {
|
|
1027
1113
|
return {
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1114
|
+
headers: 'headers',
|
|
1115
|
+
statusCode: 'statusCode',
|
|
1116
|
+
body: 'body',
|
|
1031
1117
|
};
|
|
1032
1118
|
}
|
|
1033
1119
|
|
|
1034
1120
|
static types(): { [key: string]: any } {
|
|
1035
1121
|
return {
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1122
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1123
|
+
statusCode: 'number',
|
|
1124
|
+
body: PhoneNumberStatusForVirtualResponseBody,
|
|
1039
1125
|
};
|
|
1040
1126
|
}
|
|
1041
1127
|
|
|
@@ -1044,26 +1130,60 @@ export class DescribePhoneNumberStatusResponseBodyPhoneStatus extends $tea.Model
|
|
|
1044
1130
|
}
|
|
1045
1131
|
}
|
|
1046
1132
|
|
|
1047
|
-
export class
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1133
|
+
export class PhoneNumberStatusForVoiceRequest extends $tea.Model {
|
|
1134
|
+
authCode?: string;
|
|
1135
|
+
inputNumber?: string;
|
|
1136
|
+
mask?: string;
|
|
1137
|
+
ownerId?: number;
|
|
1138
|
+
resourceOwnerAccount?: string;
|
|
1139
|
+
resourceOwnerId?: number;
|
|
1052
1140
|
static names(): { [key: string]: string } {
|
|
1053
1141
|
return {
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1142
|
+
authCode: 'AuthCode',
|
|
1143
|
+
inputNumber: 'InputNumber',
|
|
1144
|
+
mask: 'Mask',
|
|
1145
|
+
ownerId: 'OwnerId',
|
|
1146
|
+
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
1147
|
+
resourceOwnerId: 'ResourceOwnerId',
|
|
1148
|
+
};
|
|
1149
|
+
}
|
|
1150
|
+
|
|
1151
|
+
static types(): { [key: string]: any } {
|
|
1152
|
+
return {
|
|
1153
|
+
authCode: 'string',
|
|
1154
|
+
inputNumber: 'string',
|
|
1155
|
+
mask: 'string',
|
|
1156
|
+
ownerId: 'number',
|
|
1157
|
+
resourceOwnerAccount: 'string',
|
|
1158
|
+
resourceOwnerId: 'number',
|
|
1159
|
+
};
|
|
1160
|
+
}
|
|
1161
|
+
|
|
1162
|
+
constructor(map?: { [key: string]: any }) {
|
|
1163
|
+
super(map);
|
|
1164
|
+
}
|
|
1165
|
+
}
|
|
1166
|
+
|
|
1167
|
+
export class PhoneNumberStatusForVoiceResponseBody extends $tea.Model {
|
|
1168
|
+
code?: string;
|
|
1169
|
+
data?: PhoneNumberStatusForVoiceResponseBodyData;
|
|
1170
|
+
message?: string;
|
|
1171
|
+
requestId?: string;
|
|
1172
|
+
static names(): { [key: string]: string } {
|
|
1173
|
+
return {
|
|
1174
|
+
code: 'Code',
|
|
1175
|
+
data: 'Data',
|
|
1176
|
+
message: 'Message',
|
|
1177
|
+
requestId: 'RequestId',
|
|
1178
|
+
};
|
|
1179
|
+
}
|
|
1060
1180
|
|
|
1061
1181
|
static types(): { [key: string]: any } {
|
|
1062
1182
|
return {
|
|
1063
1183
|
code: 'string',
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1184
|
+
data: PhoneNumberStatusForVoiceResponseBodyData,
|
|
1185
|
+
message: 'string',
|
|
1186
|
+
requestId: 'string',
|
|
1067
1187
|
};
|
|
1068
1188
|
}
|
|
1069
1189
|
|
|
@@ -1072,111 +1192,940 @@ export class InvalidPhoneNumberFilterResponseBodyData extends $tea.Model {
|
|
|
1072
1192
|
}
|
|
1073
1193
|
}
|
|
1074
1194
|
|
|
1075
|
-
export class
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1195
|
+
export class PhoneNumberStatusForVoiceResponse extends $tea.Model {
|
|
1196
|
+
headers: { [key: string]: string };
|
|
1197
|
+
statusCode: number;
|
|
1198
|
+
body: PhoneNumberStatusForVoiceResponseBody;
|
|
1079
1199
|
static names(): { [key: string]: string } {
|
|
1080
1200
|
return {
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1201
|
+
headers: 'headers',
|
|
1202
|
+
statusCode: 'statusCode',
|
|
1203
|
+
body: 'body',
|
|
1084
1204
|
};
|
|
1085
1205
|
}
|
|
1086
1206
|
|
|
1087
1207
|
static types(): { [key: string]: any } {
|
|
1088
1208
|
return {
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1209
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1210
|
+
statusCode: 'number',
|
|
1211
|
+
body: PhoneNumberStatusForVoiceResponseBody,
|
|
1212
|
+
};
|
|
1213
|
+
}
|
|
1214
|
+
|
|
1215
|
+
constructor(map?: { [key: string]: any }) {
|
|
1216
|
+
super(map);
|
|
1217
|
+
}
|
|
1218
|
+
}
|
|
1219
|
+
|
|
1220
|
+
export class PvrCallbackFCUResponse extends $tea.Model {
|
|
1221
|
+
headers: { [key: string]: string };
|
|
1222
|
+
statusCode: number;
|
|
1223
|
+
static names(): { [key: string]: string } {
|
|
1224
|
+
return {
|
|
1225
|
+
headers: 'headers',
|
|
1226
|
+
statusCode: 'statusCode',
|
|
1227
|
+
};
|
|
1228
|
+
}
|
|
1229
|
+
|
|
1230
|
+
static types(): { [key: string]: any } {
|
|
1231
|
+
return {
|
|
1232
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1233
|
+
statusCode: 'number',
|
|
1234
|
+
};
|
|
1235
|
+
}
|
|
1236
|
+
|
|
1237
|
+
constructor(map?: { [key: string]: any }) {
|
|
1238
|
+
super(map);
|
|
1239
|
+
}
|
|
1240
|
+
}
|
|
1241
|
+
|
|
1242
|
+
export class ThreeElementsVerificationRequest extends $tea.Model {
|
|
1243
|
+
authCode?: string;
|
|
1244
|
+
certCode?: string;
|
|
1245
|
+
inputNumber?: string;
|
|
1246
|
+
mask?: string;
|
|
1247
|
+
name?: string;
|
|
1248
|
+
ownerId?: number;
|
|
1249
|
+
resourceOwnerAccount?: string;
|
|
1250
|
+
resourceOwnerId?: number;
|
|
1251
|
+
static names(): { [key: string]: string } {
|
|
1252
|
+
return {
|
|
1253
|
+
authCode: 'AuthCode',
|
|
1254
|
+
certCode: 'CertCode',
|
|
1255
|
+
inputNumber: 'InputNumber',
|
|
1256
|
+
mask: 'Mask',
|
|
1257
|
+
name: 'Name',
|
|
1258
|
+
ownerId: 'OwnerId',
|
|
1259
|
+
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
1260
|
+
resourceOwnerId: 'ResourceOwnerId',
|
|
1261
|
+
};
|
|
1262
|
+
}
|
|
1263
|
+
|
|
1264
|
+
static types(): { [key: string]: any } {
|
|
1265
|
+
return {
|
|
1266
|
+
authCode: 'string',
|
|
1267
|
+
certCode: 'string',
|
|
1268
|
+
inputNumber: 'string',
|
|
1269
|
+
mask: 'string',
|
|
1270
|
+
name: 'string',
|
|
1271
|
+
ownerId: 'number',
|
|
1272
|
+
resourceOwnerAccount: 'string',
|
|
1273
|
+
resourceOwnerId: 'number',
|
|
1274
|
+
};
|
|
1275
|
+
}
|
|
1276
|
+
|
|
1277
|
+
constructor(map?: { [key: string]: any }) {
|
|
1278
|
+
super(map);
|
|
1279
|
+
}
|
|
1280
|
+
}
|
|
1281
|
+
|
|
1282
|
+
export class ThreeElementsVerificationResponseBody extends $tea.Model {
|
|
1283
|
+
code?: string;
|
|
1284
|
+
data?: ThreeElementsVerificationResponseBodyData;
|
|
1285
|
+
message?: string;
|
|
1286
|
+
requestId?: string;
|
|
1287
|
+
static names(): { [key: string]: string } {
|
|
1288
|
+
return {
|
|
1289
|
+
code: 'Code',
|
|
1290
|
+
data: 'Data',
|
|
1291
|
+
message: 'Message',
|
|
1292
|
+
requestId: 'RequestId',
|
|
1293
|
+
};
|
|
1294
|
+
}
|
|
1295
|
+
|
|
1296
|
+
static types(): { [key: string]: any } {
|
|
1297
|
+
return {
|
|
1298
|
+
code: 'string',
|
|
1299
|
+
data: ThreeElementsVerificationResponseBodyData,
|
|
1300
|
+
message: 'string',
|
|
1301
|
+
requestId: 'string',
|
|
1302
|
+
};
|
|
1303
|
+
}
|
|
1304
|
+
|
|
1305
|
+
constructor(map?: { [key: string]: any }) {
|
|
1306
|
+
super(map);
|
|
1307
|
+
}
|
|
1308
|
+
}
|
|
1309
|
+
|
|
1310
|
+
export class ThreeElementsVerificationResponse extends $tea.Model {
|
|
1311
|
+
headers: { [key: string]: string };
|
|
1312
|
+
statusCode: number;
|
|
1313
|
+
body: ThreeElementsVerificationResponseBody;
|
|
1314
|
+
static names(): { [key: string]: string } {
|
|
1315
|
+
return {
|
|
1316
|
+
headers: 'headers',
|
|
1317
|
+
statusCode: 'statusCode',
|
|
1318
|
+
body: 'body',
|
|
1319
|
+
};
|
|
1320
|
+
}
|
|
1321
|
+
|
|
1322
|
+
static types(): { [key: string]: any } {
|
|
1323
|
+
return {
|
|
1324
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1325
|
+
statusCode: 'number',
|
|
1326
|
+
body: ThreeElementsVerificationResponseBody,
|
|
1327
|
+
};
|
|
1328
|
+
}
|
|
1329
|
+
|
|
1330
|
+
constructor(map?: { [key: string]: any }) {
|
|
1331
|
+
super(map);
|
|
1332
|
+
}
|
|
1333
|
+
}
|
|
1334
|
+
|
|
1335
|
+
export class TwoElementsVerificationRequest extends $tea.Model {
|
|
1336
|
+
authCode?: string;
|
|
1337
|
+
inputNumber?: string;
|
|
1338
|
+
mask?: string;
|
|
1339
|
+
name?: string;
|
|
1340
|
+
ownerId?: number;
|
|
1341
|
+
resourceOwnerAccount?: string;
|
|
1342
|
+
resourceOwnerId?: number;
|
|
1343
|
+
static names(): { [key: string]: string } {
|
|
1344
|
+
return {
|
|
1345
|
+
authCode: 'AuthCode',
|
|
1346
|
+
inputNumber: 'InputNumber',
|
|
1347
|
+
mask: 'Mask',
|
|
1348
|
+
name: 'Name',
|
|
1349
|
+
ownerId: 'OwnerId',
|
|
1350
|
+
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
1351
|
+
resourceOwnerId: 'ResourceOwnerId',
|
|
1352
|
+
};
|
|
1353
|
+
}
|
|
1354
|
+
|
|
1355
|
+
static types(): { [key: string]: any } {
|
|
1356
|
+
return {
|
|
1357
|
+
authCode: 'string',
|
|
1358
|
+
inputNumber: 'string',
|
|
1359
|
+
mask: 'string',
|
|
1360
|
+
name: 'string',
|
|
1361
|
+
ownerId: 'number',
|
|
1362
|
+
resourceOwnerAccount: 'string',
|
|
1363
|
+
resourceOwnerId: 'number',
|
|
1364
|
+
};
|
|
1365
|
+
}
|
|
1366
|
+
|
|
1367
|
+
constructor(map?: { [key: string]: any }) {
|
|
1368
|
+
super(map);
|
|
1369
|
+
}
|
|
1370
|
+
}
|
|
1371
|
+
|
|
1372
|
+
export class TwoElementsVerificationResponseBody extends $tea.Model {
|
|
1373
|
+
code?: string;
|
|
1374
|
+
data?: TwoElementsVerificationResponseBodyData;
|
|
1375
|
+
message?: string;
|
|
1376
|
+
requestId?: string;
|
|
1377
|
+
static names(): { [key: string]: string } {
|
|
1378
|
+
return {
|
|
1379
|
+
code: 'Code',
|
|
1380
|
+
data: 'Data',
|
|
1381
|
+
message: 'Message',
|
|
1382
|
+
requestId: 'RequestId',
|
|
1383
|
+
};
|
|
1384
|
+
}
|
|
1385
|
+
|
|
1386
|
+
static types(): { [key: string]: any } {
|
|
1387
|
+
return {
|
|
1388
|
+
code: 'string',
|
|
1389
|
+
data: TwoElementsVerificationResponseBodyData,
|
|
1390
|
+
message: 'string',
|
|
1391
|
+
requestId: 'string',
|
|
1392
|
+
};
|
|
1393
|
+
}
|
|
1394
|
+
|
|
1395
|
+
constructor(map?: { [key: string]: any }) {
|
|
1396
|
+
super(map);
|
|
1397
|
+
}
|
|
1398
|
+
}
|
|
1399
|
+
|
|
1400
|
+
export class TwoElementsVerificationResponse extends $tea.Model {
|
|
1401
|
+
headers: { [key: string]: string };
|
|
1402
|
+
statusCode: number;
|
|
1403
|
+
body: TwoElementsVerificationResponseBody;
|
|
1404
|
+
static names(): { [key: string]: string } {
|
|
1405
|
+
return {
|
|
1406
|
+
headers: 'headers',
|
|
1407
|
+
statusCode: 'statusCode',
|
|
1408
|
+
body: 'body',
|
|
1092
1409
|
};
|
|
1093
1410
|
}
|
|
1094
1411
|
|
|
1095
|
-
|
|
1096
|
-
|
|
1412
|
+
static types(): { [key: string]: any } {
|
|
1413
|
+
return {
|
|
1414
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1415
|
+
statusCode: 'number',
|
|
1416
|
+
body: TwoElementsVerificationResponseBody,
|
|
1417
|
+
};
|
|
1418
|
+
}
|
|
1419
|
+
|
|
1420
|
+
constructor(map?: { [key: string]: any }) {
|
|
1421
|
+
super(map);
|
|
1422
|
+
}
|
|
1423
|
+
}
|
|
1424
|
+
|
|
1425
|
+
export class DescribeEmptyNumberDetectResponseBodyData extends $tea.Model {
|
|
1426
|
+
number?: string;
|
|
1427
|
+
status?: string;
|
|
1428
|
+
static names(): { [key: string]: string } {
|
|
1429
|
+
return {
|
|
1430
|
+
number: 'Number',
|
|
1431
|
+
status: 'Status',
|
|
1432
|
+
};
|
|
1433
|
+
}
|
|
1434
|
+
|
|
1435
|
+
static types(): { [key: string]: any } {
|
|
1436
|
+
return {
|
|
1437
|
+
number: 'string',
|
|
1438
|
+
status: 'string',
|
|
1439
|
+
};
|
|
1440
|
+
}
|
|
1441
|
+
|
|
1442
|
+
constructor(map?: { [key: string]: any }) {
|
|
1443
|
+
super(map);
|
|
1444
|
+
}
|
|
1445
|
+
}
|
|
1446
|
+
|
|
1447
|
+
export class DescribePhoneNumberAnalysisResponseBodyData extends $tea.Model {
|
|
1448
|
+
code?: string;
|
|
1449
|
+
number?: string;
|
|
1450
|
+
static names(): { [key: string]: string } {
|
|
1451
|
+
return {
|
|
1452
|
+
code: 'Code',
|
|
1453
|
+
number: 'Number',
|
|
1454
|
+
};
|
|
1455
|
+
}
|
|
1456
|
+
|
|
1457
|
+
static types(): { [key: string]: any } {
|
|
1458
|
+
return {
|
|
1459
|
+
code: 'string',
|
|
1460
|
+
number: 'string',
|
|
1461
|
+
};
|
|
1462
|
+
}
|
|
1463
|
+
|
|
1464
|
+
constructor(map?: { [key: string]: any }) {
|
|
1465
|
+
super(map);
|
|
1466
|
+
}
|
|
1467
|
+
}
|
|
1468
|
+
|
|
1469
|
+
export class DescribePhoneNumberAttributeResponseBodyPhoneNumberAttribute extends $tea.Model {
|
|
1470
|
+
basicCarrier?: string;
|
|
1471
|
+
carrier?: string;
|
|
1472
|
+
city?: string;
|
|
1473
|
+
isNumberPortability?: boolean;
|
|
1474
|
+
numberSegment?: number;
|
|
1475
|
+
province?: string;
|
|
1476
|
+
static names(): { [key: string]: string } {
|
|
1477
|
+
return {
|
|
1478
|
+
basicCarrier: 'BasicCarrier',
|
|
1479
|
+
carrier: 'Carrier',
|
|
1480
|
+
city: 'City',
|
|
1481
|
+
isNumberPortability: 'IsNumberPortability',
|
|
1482
|
+
numberSegment: 'NumberSegment',
|
|
1483
|
+
province: 'Province',
|
|
1484
|
+
};
|
|
1485
|
+
}
|
|
1486
|
+
|
|
1487
|
+
static types(): { [key: string]: any } {
|
|
1488
|
+
return {
|
|
1489
|
+
basicCarrier: 'string',
|
|
1490
|
+
carrier: 'string',
|
|
1491
|
+
city: 'string',
|
|
1492
|
+
isNumberPortability: 'boolean',
|
|
1493
|
+
numberSegment: 'number',
|
|
1494
|
+
province: 'string',
|
|
1495
|
+
};
|
|
1496
|
+
}
|
|
1497
|
+
|
|
1498
|
+
constructor(map?: { [key: string]: any }) {
|
|
1499
|
+
super(map);
|
|
1500
|
+
}
|
|
1501
|
+
}
|
|
1502
|
+
|
|
1503
|
+
export class DescribePhoneNumberOnlineTimeResponseBodyData extends $tea.Model {
|
|
1504
|
+
verifyResult?: string;
|
|
1505
|
+
static names(): { [key: string]: string } {
|
|
1506
|
+
return {
|
|
1507
|
+
verifyResult: 'VerifyResult',
|
|
1508
|
+
};
|
|
1509
|
+
}
|
|
1510
|
+
|
|
1511
|
+
static types(): { [key: string]: any } {
|
|
1512
|
+
return {
|
|
1513
|
+
verifyResult: 'string',
|
|
1514
|
+
};
|
|
1515
|
+
}
|
|
1516
|
+
|
|
1517
|
+
constructor(map?: { [key: string]: any }) {
|
|
1518
|
+
super(map);
|
|
1519
|
+
}
|
|
1520
|
+
}
|
|
1521
|
+
|
|
1522
|
+
export class DescribePhoneNumberOperatorAttributeResponseBodyData extends $tea.Model {
|
|
1523
|
+
basicCarrier?: string;
|
|
1524
|
+
carrier?: string;
|
|
1525
|
+
city?: string;
|
|
1526
|
+
isNumberPortability?: boolean;
|
|
1527
|
+
numberSegment?: number;
|
|
1528
|
+
province?: string;
|
|
1529
|
+
static names(): { [key: string]: string } {
|
|
1530
|
+
return {
|
|
1531
|
+
basicCarrier: 'BasicCarrier',
|
|
1532
|
+
carrier: 'Carrier',
|
|
1533
|
+
city: 'City',
|
|
1534
|
+
isNumberPortability: 'IsNumberPortability',
|
|
1535
|
+
numberSegment: 'NumberSegment',
|
|
1536
|
+
province: 'Province',
|
|
1537
|
+
};
|
|
1538
|
+
}
|
|
1539
|
+
|
|
1540
|
+
static types(): { [key: string]: any } {
|
|
1541
|
+
return {
|
|
1542
|
+
basicCarrier: 'string',
|
|
1543
|
+
carrier: 'string',
|
|
1544
|
+
city: 'string',
|
|
1545
|
+
isNumberPortability: 'boolean',
|
|
1546
|
+
numberSegment: 'number',
|
|
1547
|
+
province: 'string',
|
|
1548
|
+
};
|
|
1549
|
+
}
|
|
1550
|
+
|
|
1551
|
+
constructor(map?: { [key: string]: any }) {
|
|
1552
|
+
super(map);
|
|
1553
|
+
}
|
|
1554
|
+
}
|
|
1555
|
+
|
|
1556
|
+
export class DescribePhoneNumberResaleResponseBodyTwiceTelVerify extends $tea.Model {
|
|
1557
|
+
carrier?: string;
|
|
1558
|
+
verifyResult?: number;
|
|
1559
|
+
static names(): { [key: string]: string } {
|
|
1560
|
+
return {
|
|
1561
|
+
carrier: 'Carrier',
|
|
1562
|
+
verifyResult: 'VerifyResult',
|
|
1563
|
+
};
|
|
1564
|
+
}
|
|
1565
|
+
|
|
1566
|
+
static types(): { [key: string]: any } {
|
|
1567
|
+
return {
|
|
1568
|
+
carrier: 'string',
|
|
1569
|
+
verifyResult: 'number',
|
|
1570
|
+
};
|
|
1571
|
+
}
|
|
1572
|
+
|
|
1573
|
+
constructor(map?: { [key: string]: any }) {
|
|
1574
|
+
super(map);
|
|
1575
|
+
}
|
|
1576
|
+
}
|
|
1577
|
+
|
|
1578
|
+
export class DescribePhoneNumberStatusResponseBodyPhoneStatus extends $tea.Model {
|
|
1579
|
+
carrier?: string;
|
|
1580
|
+
serialId?: string;
|
|
1581
|
+
status?: string;
|
|
1582
|
+
static names(): { [key: string]: string } {
|
|
1583
|
+
return {
|
|
1584
|
+
carrier: 'Carrier',
|
|
1585
|
+
serialId: 'SerialId',
|
|
1586
|
+
status: 'Status',
|
|
1587
|
+
};
|
|
1588
|
+
}
|
|
1589
|
+
|
|
1590
|
+
static types(): { [key: string]: any } {
|
|
1591
|
+
return {
|
|
1592
|
+
carrier: 'string',
|
|
1593
|
+
serialId: 'string',
|
|
1594
|
+
status: 'string',
|
|
1595
|
+
};
|
|
1596
|
+
}
|
|
1597
|
+
|
|
1598
|
+
constructor(map?: { [key: string]: any }) {
|
|
1599
|
+
super(map);
|
|
1600
|
+
}
|
|
1601
|
+
}
|
|
1602
|
+
|
|
1603
|
+
export class InvalidPhoneNumberFilterResponseBodyData extends $tea.Model {
|
|
1604
|
+
code?: string;
|
|
1605
|
+
encryptedNumber?: string;
|
|
1606
|
+
expireTime?: string;
|
|
1607
|
+
originalNumber?: string;
|
|
1608
|
+
static names(): { [key: string]: string } {
|
|
1609
|
+
return {
|
|
1610
|
+
code: 'Code',
|
|
1611
|
+
encryptedNumber: 'EncryptedNumber',
|
|
1612
|
+
expireTime: 'ExpireTime',
|
|
1613
|
+
originalNumber: 'OriginalNumber',
|
|
1614
|
+
};
|
|
1615
|
+
}
|
|
1616
|
+
|
|
1617
|
+
static types(): { [key: string]: any } {
|
|
1618
|
+
return {
|
|
1619
|
+
code: 'string',
|
|
1620
|
+
encryptedNumber: 'string',
|
|
1621
|
+
expireTime: 'string',
|
|
1622
|
+
originalNumber: 'string',
|
|
1623
|
+
};
|
|
1624
|
+
}
|
|
1625
|
+
|
|
1626
|
+
constructor(map?: { [key: string]: any }) {
|
|
1627
|
+
super(map);
|
|
1628
|
+
}
|
|
1629
|
+
}
|
|
1630
|
+
|
|
1631
|
+
export class PhoneNumberEncryptResponseBodyData extends $tea.Model {
|
|
1632
|
+
encryptedNumber?: string;
|
|
1633
|
+
expireTime?: string;
|
|
1634
|
+
originalNumber?: string;
|
|
1635
|
+
static names(): { [key: string]: string } {
|
|
1636
|
+
return {
|
|
1637
|
+
encryptedNumber: 'EncryptedNumber',
|
|
1638
|
+
expireTime: 'ExpireTime',
|
|
1639
|
+
originalNumber: 'OriginalNumber',
|
|
1640
|
+
};
|
|
1641
|
+
}
|
|
1642
|
+
|
|
1643
|
+
static types(): { [key: string]: any } {
|
|
1644
|
+
return {
|
|
1645
|
+
encryptedNumber: 'string',
|
|
1646
|
+
expireTime: 'string',
|
|
1647
|
+
originalNumber: 'string',
|
|
1648
|
+
};
|
|
1649
|
+
}
|
|
1650
|
+
|
|
1651
|
+
constructor(map?: { [key: string]: any }) {
|
|
1652
|
+
super(map);
|
|
1653
|
+
}
|
|
1654
|
+
}
|
|
1655
|
+
|
|
1656
|
+
export class PhoneNumberStatusForAccountResponseBodyData extends $tea.Model {
|
|
1657
|
+
carrier?: string;
|
|
1658
|
+
status?: string;
|
|
1659
|
+
static names(): { [key: string]: string } {
|
|
1660
|
+
return {
|
|
1661
|
+
carrier: 'Carrier',
|
|
1662
|
+
status: 'Status',
|
|
1663
|
+
};
|
|
1664
|
+
}
|
|
1665
|
+
|
|
1666
|
+
static types(): { [key: string]: any } {
|
|
1667
|
+
return {
|
|
1668
|
+
carrier: 'string',
|
|
1669
|
+
status: 'string',
|
|
1670
|
+
};
|
|
1671
|
+
}
|
|
1672
|
+
|
|
1673
|
+
constructor(map?: { [key: string]: any }) {
|
|
1674
|
+
super(map);
|
|
1675
|
+
}
|
|
1676
|
+
}
|
|
1677
|
+
|
|
1678
|
+
export class PhoneNumberStatusForRealResponseBodyData extends $tea.Model {
|
|
1679
|
+
carrier?: string;
|
|
1680
|
+
status?: string;
|
|
1681
|
+
static names(): { [key: string]: string } {
|
|
1682
|
+
return {
|
|
1683
|
+
carrier: 'Carrier',
|
|
1684
|
+
status: 'Status',
|
|
1685
|
+
};
|
|
1686
|
+
}
|
|
1687
|
+
|
|
1688
|
+
static types(): { [key: string]: any } {
|
|
1689
|
+
return {
|
|
1690
|
+
carrier: 'string',
|
|
1691
|
+
status: 'string',
|
|
1692
|
+
};
|
|
1693
|
+
}
|
|
1694
|
+
|
|
1695
|
+
constructor(map?: { [key: string]: any }) {
|
|
1696
|
+
super(map);
|
|
1697
|
+
}
|
|
1698
|
+
}
|
|
1699
|
+
|
|
1700
|
+
export class PhoneNumberStatusForSmsResponseBodyData extends $tea.Model {
|
|
1701
|
+
carrier?: string;
|
|
1702
|
+
status?: string;
|
|
1703
|
+
static names(): { [key: string]: string } {
|
|
1704
|
+
return {
|
|
1705
|
+
carrier: 'Carrier',
|
|
1706
|
+
status: 'Status',
|
|
1707
|
+
};
|
|
1708
|
+
}
|
|
1709
|
+
|
|
1710
|
+
static types(): { [key: string]: any } {
|
|
1711
|
+
return {
|
|
1712
|
+
carrier: 'string',
|
|
1713
|
+
status: 'string',
|
|
1714
|
+
};
|
|
1715
|
+
}
|
|
1716
|
+
|
|
1717
|
+
constructor(map?: { [key: string]: any }) {
|
|
1718
|
+
super(map);
|
|
1719
|
+
}
|
|
1720
|
+
}
|
|
1721
|
+
|
|
1722
|
+
export class PhoneNumberStatusForVirtualResponseBodyData extends $tea.Model {
|
|
1723
|
+
isPrivacyNumber?: boolean;
|
|
1724
|
+
static names(): { [key: string]: string } {
|
|
1725
|
+
return {
|
|
1726
|
+
isPrivacyNumber: 'IsPrivacyNumber',
|
|
1727
|
+
};
|
|
1728
|
+
}
|
|
1729
|
+
|
|
1730
|
+
static types(): { [key: string]: any } {
|
|
1731
|
+
return {
|
|
1732
|
+
isPrivacyNumber: 'boolean',
|
|
1733
|
+
};
|
|
1734
|
+
}
|
|
1735
|
+
|
|
1736
|
+
constructor(map?: { [key: string]: any }) {
|
|
1737
|
+
super(map);
|
|
1738
|
+
}
|
|
1739
|
+
}
|
|
1740
|
+
|
|
1741
|
+
export class PhoneNumberStatusForVoiceResponseBodyData extends $tea.Model {
|
|
1742
|
+
carrier?: string;
|
|
1743
|
+
status?: string;
|
|
1744
|
+
static names(): { [key: string]: string } {
|
|
1745
|
+
return {
|
|
1746
|
+
carrier: 'Carrier',
|
|
1747
|
+
status: 'Status',
|
|
1748
|
+
};
|
|
1749
|
+
}
|
|
1750
|
+
|
|
1751
|
+
static types(): { [key: string]: any } {
|
|
1752
|
+
return {
|
|
1753
|
+
carrier: 'string',
|
|
1754
|
+
status: 'string',
|
|
1755
|
+
};
|
|
1756
|
+
}
|
|
1757
|
+
|
|
1758
|
+
constructor(map?: { [key: string]: any }) {
|
|
1759
|
+
super(map);
|
|
1760
|
+
}
|
|
1761
|
+
}
|
|
1762
|
+
|
|
1763
|
+
export class ThreeElementsVerificationResponseBodyData extends $tea.Model {
|
|
1764
|
+
basicCarrier?: string;
|
|
1765
|
+
isConsistent?: number;
|
|
1766
|
+
static names(): { [key: string]: string } {
|
|
1767
|
+
return {
|
|
1768
|
+
basicCarrier: 'BasicCarrier',
|
|
1769
|
+
isConsistent: 'IsConsistent',
|
|
1770
|
+
};
|
|
1771
|
+
}
|
|
1772
|
+
|
|
1773
|
+
static types(): { [key: string]: any } {
|
|
1774
|
+
return {
|
|
1775
|
+
basicCarrier: 'string',
|
|
1776
|
+
isConsistent: 'number',
|
|
1777
|
+
};
|
|
1778
|
+
}
|
|
1779
|
+
|
|
1780
|
+
constructor(map?: { [key: string]: any }) {
|
|
1781
|
+
super(map);
|
|
1782
|
+
}
|
|
1783
|
+
}
|
|
1784
|
+
|
|
1785
|
+
export class TwoElementsVerificationResponseBodyData extends $tea.Model {
|
|
1786
|
+
basicCarrier?: string;
|
|
1787
|
+
isConsistent?: number;
|
|
1788
|
+
static names(): { [key: string]: string } {
|
|
1789
|
+
return {
|
|
1790
|
+
basicCarrier: 'BasicCarrier',
|
|
1791
|
+
isConsistent: 'IsConsistent',
|
|
1792
|
+
};
|
|
1793
|
+
}
|
|
1794
|
+
|
|
1795
|
+
static types(): { [key: string]: any } {
|
|
1796
|
+
return {
|
|
1797
|
+
basicCarrier: 'string',
|
|
1798
|
+
isConsistent: 'number',
|
|
1799
|
+
};
|
|
1800
|
+
}
|
|
1801
|
+
|
|
1802
|
+
constructor(map?: { [key: string]: any }) {
|
|
1803
|
+
super(map);
|
|
1804
|
+
}
|
|
1805
|
+
}
|
|
1806
|
+
|
|
1807
|
+
|
|
1808
|
+
export default class Client extends OpenApi {
|
|
1809
|
+
|
|
1810
|
+
constructor(config: $OpenApi.Config) {
|
|
1811
|
+
super(config);
|
|
1812
|
+
this._endpointRule = "central";
|
|
1813
|
+
this.checkConfig(config);
|
|
1814
|
+
this._endpoint = this.getEndpoint("dytnsapi", this._regionId, this._endpointRule, this._network, this._suffix, this._endpointMap, this._endpoint);
|
|
1815
|
+
}
|
|
1816
|
+
|
|
1817
|
+
|
|
1818
|
+
getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: {[key: string ]: string}, endpoint: string): string {
|
|
1819
|
+
if (!Util.empty(endpoint)) {
|
|
1820
|
+
return endpoint;
|
|
1821
|
+
}
|
|
1822
|
+
|
|
1823
|
+
if (!Util.isUnset(endpointMap) && !Util.empty(endpointMap[regionId])) {
|
|
1824
|
+
return endpointMap[regionId];
|
|
1825
|
+
}
|
|
1826
|
+
|
|
1827
|
+
return EndpointUtil.getEndpointRules(productId, regionId, endpointRule, network, suffix);
|
|
1828
|
+
}
|
|
1829
|
+
|
|
1830
|
+
async describeEmptyNumberDetectWithOptions(request: DescribeEmptyNumberDetectRequest, runtime: $Util.RuntimeOptions): Promise<DescribeEmptyNumberDetectResponse> {
|
|
1831
|
+
Util.validateModel(request);
|
|
1832
|
+
let query = { };
|
|
1833
|
+
if (!Util.isUnset(request.encryptType)) {
|
|
1834
|
+
query["EncryptType"] = request.encryptType;
|
|
1835
|
+
}
|
|
1836
|
+
|
|
1837
|
+
if (!Util.isUnset(request.ownerId)) {
|
|
1838
|
+
query["OwnerId"] = request.ownerId;
|
|
1839
|
+
}
|
|
1840
|
+
|
|
1841
|
+
if (!Util.isUnset(request.phone)) {
|
|
1842
|
+
query["Phone"] = request.phone;
|
|
1843
|
+
}
|
|
1844
|
+
|
|
1845
|
+
if (!Util.isUnset(request.resourceOwnerAccount)) {
|
|
1846
|
+
query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
|
|
1847
|
+
}
|
|
1848
|
+
|
|
1849
|
+
if (!Util.isUnset(request.resourceOwnerId)) {
|
|
1850
|
+
query["ResourceOwnerId"] = request.resourceOwnerId;
|
|
1851
|
+
}
|
|
1852
|
+
|
|
1853
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
1854
|
+
query: OpenApiUtil.query(query),
|
|
1855
|
+
});
|
|
1856
|
+
let params = new $OpenApi.Params({
|
|
1857
|
+
action: "DescribeEmptyNumberDetect",
|
|
1858
|
+
version: "2020-02-17",
|
|
1859
|
+
protocol: "HTTPS",
|
|
1860
|
+
pathname: "/",
|
|
1861
|
+
method: "POST",
|
|
1862
|
+
authType: "AK",
|
|
1863
|
+
style: "RPC",
|
|
1864
|
+
reqBodyType: "formData",
|
|
1865
|
+
bodyType: "json",
|
|
1866
|
+
});
|
|
1867
|
+
return $tea.cast<DescribeEmptyNumberDetectResponse>(await this.callApi(params, req, runtime), new DescribeEmptyNumberDetectResponse({}));
|
|
1868
|
+
}
|
|
1869
|
+
|
|
1870
|
+
async describeEmptyNumberDetect(request: DescribeEmptyNumberDetectRequest): Promise<DescribeEmptyNumberDetectResponse> {
|
|
1871
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
1872
|
+
return await this.describeEmptyNumberDetectWithOptions(request, runtime);
|
|
1873
|
+
}
|
|
1874
|
+
|
|
1875
|
+
async describePhoneNumberAnalysisWithOptions(request: DescribePhoneNumberAnalysisRequest, runtime: $Util.RuntimeOptions): Promise<DescribePhoneNumberAnalysisResponse> {
|
|
1876
|
+
Util.validateModel(request);
|
|
1877
|
+
let query = { };
|
|
1878
|
+
if (!Util.isUnset(request.authCode)) {
|
|
1879
|
+
query["AuthCode"] = request.authCode;
|
|
1880
|
+
}
|
|
1881
|
+
|
|
1882
|
+
if (!Util.isUnset(request.inputNumber)) {
|
|
1883
|
+
query["InputNumber"] = request.inputNumber;
|
|
1884
|
+
}
|
|
1885
|
+
|
|
1886
|
+
if (!Util.isUnset(request.mask)) {
|
|
1887
|
+
query["Mask"] = request.mask;
|
|
1888
|
+
}
|
|
1889
|
+
|
|
1890
|
+
if (!Util.isUnset(request.numberType)) {
|
|
1891
|
+
query["NumberType"] = request.numberType;
|
|
1892
|
+
}
|
|
1893
|
+
|
|
1894
|
+
if (!Util.isUnset(request.ownerId)) {
|
|
1895
|
+
query["OwnerId"] = request.ownerId;
|
|
1896
|
+
}
|
|
1897
|
+
|
|
1898
|
+
if (!Util.isUnset(request.rate)) {
|
|
1899
|
+
query["Rate"] = request.rate;
|
|
1900
|
+
}
|
|
1901
|
+
|
|
1902
|
+
if (!Util.isUnset(request.resourceOwnerAccount)) {
|
|
1903
|
+
query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
|
|
1904
|
+
}
|
|
1905
|
+
|
|
1906
|
+
if (!Util.isUnset(request.resourceOwnerId)) {
|
|
1907
|
+
query["ResourceOwnerId"] = request.resourceOwnerId;
|
|
1908
|
+
}
|
|
1909
|
+
|
|
1910
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
1911
|
+
query: OpenApiUtil.query(query),
|
|
1912
|
+
});
|
|
1913
|
+
let params = new $OpenApi.Params({
|
|
1914
|
+
action: "DescribePhoneNumberAnalysis",
|
|
1915
|
+
version: "2020-02-17",
|
|
1916
|
+
protocol: "HTTPS",
|
|
1917
|
+
pathname: "/",
|
|
1918
|
+
method: "POST",
|
|
1919
|
+
authType: "AK",
|
|
1920
|
+
style: "RPC",
|
|
1921
|
+
reqBodyType: "formData",
|
|
1922
|
+
bodyType: "json",
|
|
1923
|
+
});
|
|
1924
|
+
return $tea.cast<DescribePhoneNumberAnalysisResponse>(await this.callApi(params, req, runtime), new DescribePhoneNumberAnalysisResponse({}));
|
|
1925
|
+
}
|
|
1926
|
+
|
|
1927
|
+
async describePhoneNumberAnalysis(request: DescribePhoneNumberAnalysisRequest): Promise<DescribePhoneNumberAnalysisResponse> {
|
|
1928
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
1929
|
+
return await this.describePhoneNumberAnalysisWithOptions(request, runtime);
|
|
1930
|
+
}
|
|
1931
|
+
|
|
1932
|
+
async describePhoneNumberAttributeWithOptions(request: DescribePhoneNumberAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribePhoneNumberAttributeResponse> {
|
|
1933
|
+
Util.validateModel(request);
|
|
1934
|
+
let query = { };
|
|
1935
|
+
if (!Util.isUnset(request.ownerId)) {
|
|
1936
|
+
query["OwnerId"] = request.ownerId;
|
|
1937
|
+
}
|
|
1938
|
+
|
|
1939
|
+
if (!Util.isUnset(request.phoneNumber)) {
|
|
1940
|
+
query["PhoneNumber"] = request.phoneNumber;
|
|
1941
|
+
}
|
|
1942
|
+
|
|
1943
|
+
if (!Util.isUnset(request.resourceOwnerAccount)) {
|
|
1944
|
+
query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
|
|
1945
|
+
}
|
|
1946
|
+
|
|
1947
|
+
if (!Util.isUnset(request.resourceOwnerId)) {
|
|
1948
|
+
query["ResourceOwnerId"] = request.resourceOwnerId;
|
|
1949
|
+
}
|
|
1950
|
+
|
|
1951
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
1952
|
+
query: OpenApiUtil.query(query),
|
|
1953
|
+
});
|
|
1954
|
+
let params = new $OpenApi.Params({
|
|
1955
|
+
action: "DescribePhoneNumberAttribute",
|
|
1956
|
+
version: "2020-02-17",
|
|
1957
|
+
protocol: "HTTPS",
|
|
1958
|
+
pathname: "/",
|
|
1959
|
+
method: "POST",
|
|
1960
|
+
authType: "AK",
|
|
1961
|
+
style: "RPC",
|
|
1962
|
+
reqBodyType: "formData",
|
|
1963
|
+
bodyType: "json",
|
|
1964
|
+
});
|
|
1965
|
+
return $tea.cast<DescribePhoneNumberAttributeResponse>(await this.callApi(params, req, runtime), new DescribePhoneNumberAttributeResponse({}));
|
|
1966
|
+
}
|
|
1967
|
+
|
|
1968
|
+
async describePhoneNumberAttribute(request: DescribePhoneNumberAttributeRequest): Promise<DescribePhoneNumberAttributeResponse> {
|
|
1969
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
1970
|
+
return await this.describePhoneNumberAttributeWithOptions(request, runtime);
|
|
1971
|
+
}
|
|
1972
|
+
|
|
1973
|
+
async describePhoneNumberOnlineTimeWithOptions(request: DescribePhoneNumberOnlineTimeRequest, runtime: $Util.RuntimeOptions): Promise<DescribePhoneNumberOnlineTimeResponse> {
|
|
1974
|
+
Util.validateModel(request);
|
|
1975
|
+
let query = { };
|
|
1976
|
+
if (!Util.isUnset(request.authCode)) {
|
|
1977
|
+
query["AuthCode"] = request.authCode;
|
|
1978
|
+
}
|
|
1979
|
+
|
|
1980
|
+
if (!Util.isUnset(request.carrier)) {
|
|
1981
|
+
query["Carrier"] = request.carrier;
|
|
1982
|
+
}
|
|
1983
|
+
|
|
1984
|
+
if (!Util.isUnset(request.inputNumber)) {
|
|
1985
|
+
query["InputNumber"] = request.inputNumber;
|
|
1986
|
+
}
|
|
1987
|
+
|
|
1988
|
+
if (!Util.isUnset(request.mask)) {
|
|
1989
|
+
query["Mask"] = request.mask;
|
|
1990
|
+
}
|
|
1991
|
+
|
|
1992
|
+
if (!Util.isUnset(request.ownerId)) {
|
|
1993
|
+
query["OwnerId"] = request.ownerId;
|
|
1994
|
+
}
|
|
1995
|
+
|
|
1996
|
+
if (!Util.isUnset(request.resourceOwnerAccount)) {
|
|
1997
|
+
query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
|
|
1998
|
+
}
|
|
1999
|
+
|
|
2000
|
+
if (!Util.isUnset(request.resourceOwnerId)) {
|
|
2001
|
+
query["ResourceOwnerId"] = request.resourceOwnerId;
|
|
2002
|
+
}
|
|
2003
|
+
|
|
2004
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
2005
|
+
query: OpenApiUtil.query(query),
|
|
2006
|
+
});
|
|
2007
|
+
let params = new $OpenApi.Params({
|
|
2008
|
+
action: "DescribePhoneNumberOnlineTime",
|
|
2009
|
+
version: "2020-02-17",
|
|
2010
|
+
protocol: "HTTPS",
|
|
2011
|
+
pathname: "/",
|
|
2012
|
+
method: "POST",
|
|
2013
|
+
authType: "AK",
|
|
2014
|
+
style: "RPC",
|
|
2015
|
+
reqBodyType: "formData",
|
|
2016
|
+
bodyType: "json",
|
|
2017
|
+
});
|
|
2018
|
+
return $tea.cast<DescribePhoneNumberOnlineTimeResponse>(await this.callApi(params, req, runtime), new DescribePhoneNumberOnlineTimeResponse({}));
|
|
2019
|
+
}
|
|
2020
|
+
|
|
2021
|
+
async describePhoneNumberOnlineTime(request: DescribePhoneNumberOnlineTimeRequest): Promise<DescribePhoneNumberOnlineTimeResponse> {
|
|
2022
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
2023
|
+
return await this.describePhoneNumberOnlineTimeWithOptions(request, runtime);
|
|
1097
2024
|
}
|
|
1098
|
-
}
|
|
1099
2025
|
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
isConsistent: 'IsConsistent',
|
|
1107
|
-
};
|
|
1108
|
-
}
|
|
2026
|
+
async describePhoneNumberOperatorAttributeWithOptions(request: DescribePhoneNumberOperatorAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribePhoneNumberOperatorAttributeResponse> {
|
|
2027
|
+
Util.validateModel(request);
|
|
2028
|
+
let query = { };
|
|
2029
|
+
if (!Util.isUnset(request.authCode)) {
|
|
2030
|
+
query["AuthCode"] = request.authCode;
|
|
2031
|
+
}
|
|
1109
2032
|
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
isConsistent: 'number',
|
|
1114
|
-
};
|
|
1115
|
-
}
|
|
2033
|
+
if (!Util.isUnset(request.inputNumber)) {
|
|
2034
|
+
query["InputNumber"] = request.inputNumber;
|
|
2035
|
+
}
|
|
1116
2036
|
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
}
|
|
2037
|
+
if (!Util.isUnset(request.mask)) {
|
|
2038
|
+
query["Mask"] = request.mask;
|
|
2039
|
+
}
|
|
1121
2040
|
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
static names(): { [key: string]: string } {
|
|
1126
|
-
return {
|
|
1127
|
-
basicCarrier: 'BasicCarrier',
|
|
1128
|
-
isConsistent: 'IsConsistent',
|
|
1129
|
-
};
|
|
1130
|
-
}
|
|
2041
|
+
if (!Util.isUnset(request.ownerId)) {
|
|
2042
|
+
query["OwnerId"] = request.ownerId;
|
|
2043
|
+
}
|
|
1131
2044
|
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
isConsistent: 'number',
|
|
1136
|
-
};
|
|
1137
|
-
}
|
|
2045
|
+
if (!Util.isUnset(request.resourceOwnerAccount)) {
|
|
2046
|
+
query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
|
|
2047
|
+
}
|
|
1138
2048
|
|
|
1139
|
-
|
|
1140
|
-
|
|
2049
|
+
if (!Util.isUnset(request.resourceOwnerId)) {
|
|
2050
|
+
query["ResourceOwnerId"] = request.resourceOwnerId;
|
|
2051
|
+
}
|
|
2052
|
+
|
|
2053
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
2054
|
+
query: OpenApiUtil.query(query),
|
|
2055
|
+
});
|
|
2056
|
+
let params = new $OpenApi.Params({
|
|
2057
|
+
action: "DescribePhoneNumberOperatorAttribute",
|
|
2058
|
+
version: "2020-02-17",
|
|
2059
|
+
protocol: "HTTPS",
|
|
2060
|
+
pathname: "/",
|
|
2061
|
+
method: "POST",
|
|
2062
|
+
authType: "AK",
|
|
2063
|
+
style: "RPC",
|
|
2064
|
+
reqBodyType: "formData",
|
|
2065
|
+
bodyType: "json",
|
|
2066
|
+
});
|
|
2067
|
+
return $tea.cast<DescribePhoneNumberOperatorAttributeResponse>(await this.callApi(params, req, runtime), new DescribePhoneNumberOperatorAttributeResponse({}));
|
|
1141
2068
|
}
|
|
1142
|
-
}
|
|
1143
2069
|
|
|
2070
|
+
async describePhoneNumberOperatorAttribute(request: DescribePhoneNumberOperatorAttributeRequest): Promise<DescribePhoneNumberOperatorAttributeResponse> {
|
|
2071
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
2072
|
+
return await this.describePhoneNumberOperatorAttributeWithOptions(request, runtime);
|
|
2073
|
+
}
|
|
1144
2074
|
|
|
1145
|
-
|
|
2075
|
+
async describePhoneNumberResaleWithOptions(request: DescribePhoneNumberResaleRequest, runtime: $Util.RuntimeOptions): Promise<DescribePhoneNumberResaleResponse> {
|
|
2076
|
+
Util.validateModel(request);
|
|
2077
|
+
let query = { };
|
|
2078
|
+
if (!Util.isUnset(request.ownerId)) {
|
|
2079
|
+
query["OwnerId"] = request.ownerId;
|
|
2080
|
+
}
|
|
1146
2081
|
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
this.checkConfig(config);
|
|
1151
|
-
this._endpoint = this.getEndpoint("dytnsapi", this._regionId, this._endpointRule, this._network, this._suffix, this._endpointMap, this._endpoint);
|
|
1152
|
-
}
|
|
2082
|
+
if (!Util.isUnset(request.phoneNumber)) {
|
|
2083
|
+
query["PhoneNumber"] = request.phoneNumber;
|
|
2084
|
+
}
|
|
1153
2085
|
|
|
2086
|
+
if (!Util.isUnset(request.resourceOwnerAccount)) {
|
|
2087
|
+
query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
|
|
2088
|
+
}
|
|
1154
2089
|
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
return endpoint;
|
|
2090
|
+
if (!Util.isUnset(request.resourceOwnerId)) {
|
|
2091
|
+
query["ResourceOwnerId"] = request.resourceOwnerId;
|
|
1158
2092
|
}
|
|
1159
2093
|
|
|
1160
|
-
if (!Util.isUnset(
|
|
1161
|
-
|
|
2094
|
+
if (!Util.isUnset(request.since)) {
|
|
2095
|
+
query["Since"] = request.since;
|
|
1162
2096
|
}
|
|
1163
2097
|
|
|
1164
|
-
|
|
2098
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
2099
|
+
query: OpenApiUtil.query(query),
|
|
2100
|
+
});
|
|
2101
|
+
let params = new $OpenApi.Params({
|
|
2102
|
+
action: "DescribePhoneNumberResale",
|
|
2103
|
+
version: "2020-02-17",
|
|
2104
|
+
protocol: "HTTPS",
|
|
2105
|
+
pathname: "/",
|
|
2106
|
+
method: "POST",
|
|
2107
|
+
authType: "AK",
|
|
2108
|
+
style: "RPC",
|
|
2109
|
+
reqBodyType: "formData",
|
|
2110
|
+
bodyType: "json",
|
|
2111
|
+
});
|
|
2112
|
+
return $tea.cast<DescribePhoneNumberResaleResponse>(await this.callApi(params, req, runtime), new DescribePhoneNumberResaleResponse({}));
|
|
1165
2113
|
}
|
|
1166
2114
|
|
|
1167
|
-
async
|
|
2115
|
+
async describePhoneNumberResale(request: DescribePhoneNumberResaleRequest): Promise<DescribePhoneNumberResaleResponse> {
|
|
2116
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
2117
|
+
return await this.describePhoneNumberResaleWithOptions(request, runtime);
|
|
2118
|
+
}
|
|
2119
|
+
|
|
2120
|
+
async describePhoneNumberStatusWithOptions(request: DescribePhoneNumberStatusRequest, runtime: $Util.RuntimeOptions): Promise<DescribePhoneNumberStatusResponse> {
|
|
1168
2121
|
Util.validateModel(request);
|
|
1169
2122
|
let query = { };
|
|
1170
|
-
if (!Util.isUnset(request.encryptType)) {
|
|
1171
|
-
query["EncryptType"] = request.encryptType;
|
|
1172
|
-
}
|
|
1173
|
-
|
|
1174
2123
|
if (!Util.isUnset(request.ownerId)) {
|
|
1175
2124
|
query["OwnerId"] = request.ownerId;
|
|
1176
2125
|
}
|
|
1177
2126
|
|
|
1178
|
-
if (!Util.isUnset(request.
|
|
1179
|
-
query["
|
|
2127
|
+
if (!Util.isUnset(request.phoneNumber)) {
|
|
2128
|
+
query["PhoneNumber"] = request.phoneNumber;
|
|
1180
2129
|
}
|
|
1181
2130
|
|
|
1182
2131
|
if (!Util.isUnset(request.resourceOwnerAccount)) {
|
|
@@ -1191,7 +2140,7 @@ export default class Client extends OpenApi {
|
|
|
1191
2140
|
query: OpenApiUtil.query(query),
|
|
1192
2141
|
});
|
|
1193
2142
|
let params = new $OpenApi.Params({
|
|
1194
|
-
action: "
|
|
2143
|
+
action: "DescribePhoneNumberStatus",
|
|
1195
2144
|
version: "2020-02-17",
|
|
1196
2145
|
protocol: "HTTPS",
|
|
1197
2146
|
pathname: "/",
|
|
@@ -1201,15 +2150,15 @@ export default class Client extends OpenApi {
|
|
|
1201
2150
|
reqBodyType: "formData",
|
|
1202
2151
|
bodyType: "json",
|
|
1203
2152
|
});
|
|
1204
|
-
return $tea.cast<
|
|
2153
|
+
return $tea.cast<DescribePhoneNumberStatusResponse>(await this.callApi(params, req, runtime), new DescribePhoneNumberStatusResponse({}));
|
|
1205
2154
|
}
|
|
1206
2155
|
|
|
1207
|
-
async
|
|
2156
|
+
async describePhoneNumberStatus(request: DescribePhoneNumberStatusRequest): Promise<DescribePhoneNumberStatusResponse> {
|
|
1208
2157
|
let runtime = new $Util.RuntimeOptions({ });
|
|
1209
|
-
return await this.
|
|
2158
|
+
return await this.describePhoneNumberStatusWithOptions(request, runtime);
|
|
1210
2159
|
}
|
|
1211
2160
|
|
|
1212
|
-
async
|
|
2161
|
+
async invalidPhoneNumberFilterWithOptions(request: InvalidPhoneNumberFilterRequest, runtime: $Util.RuntimeOptions): Promise<InvalidPhoneNumberFilterResponse> {
|
|
1213
2162
|
Util.validateModel(request);
|
|
1214
2163
|
let query = { };
|
|
1215
2164
|
if (!Util.isUnset(request.authCode)) {
|
|
@@ -1224,18 +2173,10 @@ export default class Client extends OpenApi {
|
|
|
1224
2173
|
query["Mask"] = request.mask;
|
|
1225
2174
|
}
|
|
1226
2175
|
|
|
1227
|
-
if (!Util.isUnset(request.numberType)) {
|
|
1228
|
-
query["NumberType"] = request.numberType;
|
|
1229
|
-
}
|
|
1230
|
-
|
|
1231
2176
|
if (!Util.isUnset(request.ownerId)) {
|
|
1232
2177
|
query["OwnerId"] = request.ownerId;
|
|
1233
2178
|
}
|
|
1234
2179
|
|
|
1235
|
-
if (!Util.isUnset(request.rate)) {
|
|
1236
|
-
query["Rate"] = request.rate;
|
|
1237
|
-
}
|
|
1238
|
-
|
|
1239
2180
|
if (!Util.isUnset(request.resourceOwnerAccount)) {
|
|
1240
2181
|
query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
|
|
1241
2182
|
}
|
|
@@ -1248,7 +2189,7 @@ export default class Client extends OpenApi {
|
|
|
1248
2189
|
query: OpenApiUtil.query(query),
|
|
1249
2190
|
});
|
|
1250
2191
|
let params = new $OpenApi.Params({
|
|
1251
|
-
action: "
|
|
2192
|
+
action: "InvalidPhoneNumberFilter",
|
|
1252
2193
|
version: "2020-02-17",
|
|
1253
2194
|
protocol: "HTTPS",
|
|
1254
2195
|
pathname: "/",
|
|
@@ -1258,23 +2199,31 @@ export default class Client extends OpenApi {
|
|
|
1258
2199
|
reqBodyType: "formData",
|
|
1259
2200
|
bodyType: "json",
|
|
1260
2201
|
});
|
|
1261
|
-
return $tea.cast<
|
|
2202
|
+
return $tea.cast<InvalidPhoneNumberFilterResponse>(await this.callApi(params, req, runtime), new InvalidPhoneNumberFilterResponse({}));
|
|
1262
2203
|
}
|
|
1263
2204
|
|
|
1264
|
-
async
|
|
2205
|
+
async invalidPhoneNumberFilter(request: InvalidPhoneNumberFilterRequest): Promise<InvalidPhoneNumberFilterResponse> {
|
|
1265
2206
|
let runtime = new $Util.RuntimeOptions({ });
|
|
1266
|
-
return await this.
|
|
2207
|
+
return await this.invalidPhoneNumberFilterWithOptions(request, runtime);
|
|
1267
2208
|
}
|
|
1268
2209
|
|
|
1269
|
-
async
|
|
2210
|
+
async phoneNumberEncryptWithOptions(request: PhoneNumberEncryptRequest, runtime: $Util.RuntimeOptions): Promise<PhoneNumberEncryptResponse> {
|
|
1270
2211
|
Util.validateModel(request);
|
|
1271
2212
|
let query = { };
|
|
1272
|
-
if (!Util.isUnset(request.
|
|
1273
|
-
query["
|
|
2213
|
+
if (!Util.isUnset(request.authCode)) {
|
|
2214
|
+
query["AuthCode"] = request.authCode;
|
|
1274
2215
|
}
|
|
1275
2216
|
|
|
1276
|
-
if (!Util.isUnset(request.
|
|
1277
|
-
query["
|
|
2217
|
+
if (!Util.isUnset(request.inputNumber)) {
|
|
2218
|
+
query["InputNumber"] = request.inputNumber;
|
|
2219
|
+
}
|
|
2220
|
+
|
|
2221
|
+
if (!Util.isUnset(request.mask)) {
|
|
2222
|
+
query["Mask"] = request.mask;
|
|
2223
|
+
}
|
|
2224
|
+
|
|
2225
|
+
if (!Util.isUnset(request.ownerId)) {
|
|
2226
|
+
query["OwnerId"] = request.ownerId;
|
|
1278
2227
|
}
|
|
1279
2228
|
|
|
1280
2229
|
if (!Util.isUnset(request.resourceOwnerAccount)) {
|
|
@@ -1289,7 +2238,7 @@ export default class Client extends OpenApi {
|
|
|
1289
2238
|
query: OpenApiUtil.query(query),
|
|
1290
2239
|
});
|
|
1291
2240
|
let params = new $OpenApi.Params({
|
|
1292
|
-
action: "
|
|
2241
|
+
action: "PhoneNumberEncrypt",
|
|
1293
2242
|
version: "2020-02-17",
|
|
1294
2243
|
protocol: "HTTPS",
|
|
1295
2244
|
pathname: "/",
|
|
@@ -1299,25 +2248,21 @@ export default class Client extends OpenApi {
|
|
|
1299
2248
|
reqBodyType: "formData",
|
|
1300
2249
|
bodyType: "json",
|
|
1301
2250
|
});
|
|
1302
|
-
return $tea.cast<
|
|
2251
|
+
return $tea.cast<PhoneNumberEncryptResponse>(await this.callApi(params, req, runtime), new PhoneNumberEncryptResponse({}));
|
|
1303
2252
|
}
|
|
1304
2253
|
|
|
1305
|
-
async
|
|
2254
|
+
async phoneNumberEncrypt(request: PhoneNumberEncryptRequest): Promise<PhoneNumberEncryptResponse> {
|
|
1306
2255
|
let runtime = new $Util.RuntimeOptions({ });
|
|
1307
|
-
return await this.
|
|
2256
|
+
return await this.phoneNumberEncryptWithOptions(request, runtime);
|
|
1308
2257
|
}
|
|
1309
2258
|
|
|
1310
|
-
async
|
|
2259
|
+
async phoneNumberStatusForAccountWithOptions(request: PhoneNumberStatusForAccountRequest, runtime: $Util.RuntimeOptions): Promise<PhoneNumberStatusForAccountResponse> {
|
|
1311
2260
|
Util.validateModel(request);
|
|
1312
2261
|
let query = { };
|
|
1313
2262
|
if (!Util.isUnset(request.authCode)) {
|
|
1314
2263
|
query["AuthCode"] = request.authCode;
|
|
1315
2264
|
}
|
|
1316
2265
|
|
|
1317
|
-
if (!Util.isUnset(request.carrier)) {
|
|
1318
|
-
query["Carrier"] = request.carrier;
|
|
1319
|
-
}
|
|
1320
|
-
|
|
1321
2266
|
if (!Util.isUnset(request.inputNumber)) {
|
|
1322
2267
|
query["InputNumber"] = request.inputNumber;
|
|
1323
2268
|
}
|
|
@@ -1342,7 +2287,7 @@ export default class Client extends OpenApi {
|
|
|
1342
2287
|
query: OpenApiUtil.query(query),
|
|
1343
2288
|
});
|
|
1344
2289
|
let params = new $OpenApi.Params({
|
|
1345
|
-
action: "
|
|
2290
|
+
action: "PhoneNumberStatusForAccount",
|
|
1346
2291
|
version: "2020-02-17",
|
|
1347
2292
|
protocol: "HTTPS",
|
|
1348
2293
|
pathname: "/",
|
|
@@ -1352,23 +2297,31 @@ export default class Client extends OpenApi {
|
|
|
1352
2297
|
reqBodyType: "formData",
|
|
1353
2298
|
bodyType: "json",
|
|
1354
2299
|
});
|
|
1355
|
-
return $tea.cast<
|
|
2300
|
+
return $tea.cast<PhoneNumberStatusForAccountResponse>(await this.callApi(params, req, runtime), new PhoneNumberStatusForAccountResponse({}));
|
|
1356
2301
|
}
|
|
1357
2302
|
|
|
1358
|
-
async
|
|
2303
|
+
async phoneNumberStatusForAccount(request: PhoneNumberStatusForAccountRequest): Promise<PhoneNumberStatusForAccountResponse> {
|
|
1359
2304
|
let runtime = new $Util.RuntimeOptions({ });
|
|
1360
|
-
return await this.
|
|
2305
|
+
return await this.phoneNumberStatusForAccountWithOptions(request, runtime);
|
|
1361
2306
|
}
|
|
1362
2307
|
|
|
1363
|
-
async
|
|
2308
|
+
async phoneNumberStatusForRealWithOptions(request: PhoneNumberStatusForRealRequest, runtime: $Util.RuntimeOptions): Promise<PhoneNumberStatusForRealResponse> {
|
|
1364
2309
|
Util.validateModel(request);
|
|
1365
2310
|
let query = { };
|
|
1366
|
-
if (!Util.isUnset(request.
|
|
1367
|
-
query["
|
|
2311
|
+
if (!Util.isUnset(request.authCode)) {
|
|
2312
|
+
query["AuthCode"] = request.authCode;
|
|
1368
2313
|
}
|
|
1369
2314
|
|
|
1370
|
-
if (!Util.isUnset(request.
|
|
1371
|
-
query["
|
|
2315
|
+
if (!Util.isUnset(request.inputNumber)) {
|
|
2316
|
+
query["InputNumber"] = request.inputNumber;
|
|
2317
|
+
}
|
|
2318
|
+
|
|
2319
|
+
if (!Util.isUnset(request.mask)) {
|
|
2320
|
+
query["Mask"] = request.mask;
|
|
2321
|
+
}
|
|
2322
|
+
|
|
2323
|
+
if (!Util.isUnset(request.ownerId)) {
|
|
2324
|
+
query["OwnerId"] = request.ownerId;
|
|
1372
2325
|
}
|
|
1373
2326
|
|
|
1374
2327
|
if (!Util.isUnset(request.resourceOwnerAccount)) {
|
|
@@ -1379,15 +2332,11 @@ export default class Client extends OpenApi {
|
|
|
1379
2332
|
query["ResourceOwnerId"] = request.resourceOwnerId;
|
|
1380
2333
|
}
|
|
1381
2334
|
|
|
1382
|
-
if (!Util.isUnset(request.since)) {
|
|
1383
|
-
query["Since"] = request.since;
|
|
1384
|
-
}
|
|
1385
|
-
|
|
1386
2335
|
let req = new $OpenApi.OpenApiRequest({
|
|
1387
2336
|
query: OpenApiUtil.query(query),
|
|
1388
2337
|
});
|
|
1389
2338
|
let params = new $OpenApi.Params({
|
|
1390
|
-
action: "
|
|
2339
|
+
action: "PhoneNumberStatusForReal",
|
|
1391
2340
|
version: "2020-02-17",
|
|
1392
2341
|
protocol: "HTTPS",
|
|
1393
2342
|
pathname: "/",
|
|
@@ -1397,23 +2346,31 @@ export default class Client extends OpenApi {
|
|
|
1397
2346
|
reqBodyType: "formData",
|
|
1398
2347
|
bodyType: "json",
|
|
1399
2348
|
});
|
|
1400
|
-
return $tea.cast<
|
|
2349
|
+
return $tea.cast<PhoneNumberStatusForRealResponse>(await this.callApi(params, req, runtime), new PhoneNumberStatusForRealResponse({}));
|
|
1401
2350
|
}
|
|
1402
2351
|
|
|
1403
|
-
async
|
|
2352
|
+
async phoneNumberStatusForReal(request: PhoneNumberStatusForRealRequest): Promise<PhoneNumberStatusForRealResponse> {
|
|
1404
2353
|
let runtime = new $Util.RuntimeOptions({ });
|
|
1405
|
-
return await this.
|
|
2354
|
+
return await this.phoneNumberStatusForRealWithOptions(request, runtime);
|
|
1406
2355
|
}
|
|
1407
2356
|
|
|
1408
|
-
async
|
|
2357
|
+
async phoneNumberStatusForSmsWithOptions(request: PhoneNumberStatusForSmsRequest, runtime: $Util.RuntimeOptions): Promise<PhoneNumberStatusForSmsResponse> {
|
|
1409
2358
|
Util.validateModel(request);
|
|
1410
2359
|
let query = { };
|
|
1411
|
-
if (!Util.isUnset(request.
|
|
1412
|
-
query["
|
|
2360
|
+
if (!Util.isUnset(request.authCode)) {
|
|
2361
|
+
query["AuthCode"] = request.authCode;
|
|
1413
2362
|
}
|
|
1414
2363
|
|
|
1415
|
-
if (!Util.isUnset(request.
|
|
1416
|
-
query["
|
|
2364
|
+
if (!Util.isUnset(request.inputNumber)) {
|
|
2365
|
+
query["InputNumber"] = request.inputNumber;
|
|
2366
|
+
}
|
|
2367
|
+
|
|
2368
|
+
if (!Util.isUnset(request.mask)) {
|
|
2369
|
+
query["Mask"] = request.mask;
|
|
2370
|
+
}
|
|
2371
|
+
|
|
2372
|
+
if (!Util.isUnset(request.ownerId)) {
|
|
2373
|
+
query["OwnerId"] = request.ownerId;
|
|
1417
2374
|
}
|
|
1418
2375
|
|
|
1419
2376
|
if (!Util.isUnset(request.resourceOwnerAccount)) {
|
|
@@ -1428,7 +2385,7 @@ export default class Client extends OpenApi {
|
|
|
1428
2385
|
query: OpenApiUtil.query(query),
|
|
1429
2386
|
});
|
|
1430
2387
|
let params = new $OpenApi.Params({
|
|
1431
|
-
action: "
|
|
2388
|
+
action: "PhoneNumberStatusForSms",
|
|
1432
2389
|
version: "2020-02-17",
|
|
1433
2390
|
protocol: "HTTPS",
|
|
1434
2391
|
pathname: "/",
|
|
@@ -1438,15 +2395,15 @@ export default class Client extends OpenApi {
|
|
|
1438
2395
|
reqBodyType: "formData",
|
|
1439
2396
|
bodyType: "json",
|
|
1440
2397
|
});
|
|
1441
|
-
return $tea.cast<
|
|
2398
|
+
return $tea.cast<PhoneNumberStatusForSmsResponse>(await this.callApi(params, req, runtime), new PhoneNumberStatusForSmsResponse({}));
|
|
1442
2399
|
}
|
|
1443
2400
|
|
|
1444
|
-
async
|
|
2401
|
+
async phoneNumberStatusForSms(request: PhoneNumberStatusForSmsRequest): Promise<PhoneNumberStatusForSmsResponse> {
|
|
1445
2402
|
let runtime = new $Util.RuntimeOptions({ });
|
|
1446
|
-
return await this.
|
|
2403
|
+
return await this.phoneNumberStatusForSmsWithOptions(request, runtime);
|
|
1447
2404
|
}
|
|
1448
2405
|
|
|
1449
|
-
async
|
|
2406
|
+
async phoneNumberStatusForVirtualWithOptions(request: PhoneNumberStatusForVirtualRequest, runtime: $Util.RuntimeOptions): Promise<PhoneNumberStatusForVirtualResponse> {
|
|
1450
2407
|
Util.validateModel(request);
|
|
1451
2408
|
let query = { };
|
|
1452
2409
|
if (!Util.isUnset(request.authCode)) {
|
|
@@ -1477,7 +2434,7 @@ export default class Client extends OpenApi {
|
|
|
1477
2434
|
query: OpenApiUtil.query(query),
|
|
1478
2435
|
});
|
|
1479
2436
|
let params = new $OpenApi.Params({
|
|
1480
|
-
action: "
|
|
2437
|
+
action: "PhoneNumberStatusForVirtual",
|
|
1481
2438
|
version: "2020-02-17",
|
|
1482
2439
|
protocol: "HTTPS",
|
|
1483
2440
|
pathname: "/",
|
|
@@ -1487,15 +2444,15 @@ export default class Client extends OpenApi {
|
|
|
1487
2444
|
reqBodyType: "formData",
|
|
1488
2445
|
bodyType: "json",
|
|
1489
2446
|
});
|
|
1490
|
-
return $tea.cast<
|
|
2447
|
+
return $tea.cast<PhoneNumberStatusForVirtualResponse>(await this.callApi(params, req, runtime), new PhoneNumberStatusForVirtualResponse({}));
|
|
1491
2448
|
}
|
|
1492
2449
|
|
|
1493
|
-
async
|
|
2450
|
+
async phoneNumberStatusForVirtual(request: PhoneNumberStatusForVirtualRequest): Promise<PhoneNumberStatusForVirtualResponse> {
|
|
1494
2451
|
let runtime = new $Util.RuntimeOptions({ });
|
|
1495
|
-
return await this.
|
|
2452
|
+
return await this.phoneNumberStatusForVirtualWithOptions(request, runtime);
|
|
1496
2453
|
}
|
|
1497
2454
|
|
|
1498
|
-
async
|
|
2455
|
+
async phoneNumberStatusForVoiceWithOptions(request: PhoneNumberStatusForVoiceRequest, runtime: $Util.RuntimeOptions): Promise<PhoneNumberStatusForVoiceResponse> {
|
|
1499
2456
|
Util.validateModel(request);
|
|
1500
2457
|
let query = { };
|
|
1501
2458
|
if (!Util.isUnset(request.authCode)) {
|
|
@@ -1526,7 +2483,7 @@ export default class Client extends OpenApi {
|
|
|
1526
2483
|
query: OpenApiUtil.query(query),
|
|
1527
2484
|
});
|
|
1528
2485
|
let params = new $OpenApi.Params({
|
|
1529
|
-
action: "
|
|
2486
|
+
action: "PhoneNumberStatusForVoice",
|
|
1530
2487
|
version: "2020-02-17",
|
|
1531
2488
|
protocol: "HTTPS",
|
|
1532
2489
|
pathname: "/",
|
|
@@ -1536,12 +2493,12 @@ export default class Client extends OpenApi {
|
|
|
1536
2493
|
reqBodyType: "formData",
|
|
1537
2494
|
bodyType: "json",
|
|
1538
2495
|
});
|
|
1539
|
-
return $tea.cast<
|
|
2496
|
+
return $tea.cast<PhoneNumberStatusForVoiceResponse>(await this.callApi(params, req, runtime), new PhoneNumberStatusForVoiceResponse({}));
|
|
1540
2497
|
}
|
|
1541
2498
|
|
|
1542
|
-
async
|
|
2499
|
+
async phoneNumberStatusForVoice(request: PhoneNumberStatusForVoiceRequest): Promise<PhoneNumberStatusForVoiceResponse> {
|
|
1543
2500
|
let runtime = new $Util.RuntimeOptions({ });
|
|
1544
|
-
return await this.
|
|
2501
|
+
return await this.phoneNumberStatusForVoiceWithOptions(request, runtime);
|
|
1545
2502
|
}
|
|
1546
2503
|
|
|
1547
2504
|
async pvrCallbackFCUWithOptions(runtime: $Util.RuntimeOptions): Promise<PvrCallbackFCUResponse> {
|