@alicloud/aliding20230426 2.16.0 → 2.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +1198 -0
- package/dist/client.js +1442 -36
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +2376 -314
package/src/client.ts
CHANGED
|
@@ -678,9 +678,9 @@ export class AddMeetingRoomsResponse extends $tea.Model {
|
|
|
678
678
|
}
|
|
679
679
|
}
|
|
680
680
|
|
|
681
|
-
export class
|
|
681
|
+
export class AddRecordPermissionHeaders extends $tea.Model {
|
|
682
682
|
commonHeaders?: { [key: string]: string };
|
|
683
|
-
accountContext?:
|
|
683
|
+
accountContext?: AddRecordPermissionHeadersAccountContext;
|
|
684
684
|
static names(): { [key: string]: string } {
|
|
685
685
|
return {
|
|
686
686
|
commonHeaders: 'commonHeaders',
|
|
@@ -691,7 +691,7 @@ export class AddScenegroupMemberHeaders extends $tea.Model {
|
|
|
691
691
|
static types(): { [key: string]: any } {
|
|
692
692
|
return {
|
|
693
693
|
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
694
|
-
accountContext:
|
|
694
|
+
accountContext: AddRecordPermissionHeadersAccountContext,
|
|
695
695
|
};
|
|
696
696
|
}
|
|
697
697
|
|
|
@@ -700,7 +700,7 @@ export class AddScenegroupMemberHeaders extends $tea.Model {
|
|
|
700
700
|
}
|
|
701
701
|
}
|
|
702
702
|
|
|
703
|
-
export class
|
|
703
|
+
export class AddRecordPermissionShrinkHeaders extends $tea.Model {
|
|
704
704
|
commonHeaders?: { [key: string]: string };
|
|
705
705
|
accountContextShrink?: string;
|
|
706
706
|
static names(): { [key: string]: string } {
|
|
@@ -722,34 +722,47 @@ export class AddScenegroupMemberShrinkHeaders extends $tea.Model {
|
|
|
722
722
|
}
|
|
723
723
|
}
|
|
724
724
|
|
|
725
|
-
export class
|
|
725
|
+
export class AddRecordPermissionRequest extends $tea.Model {
|
|
726
726
|
/**
|
|
727
727
|
* @remarks
|
|
728
728
|
* This parameter is required.
|
|
729
729
|
*
|
|
730
730
|
* @example
|
|
731
|
-
*
|
|
731
|
+
* minutes
|
|
732
732
|
*/
|
|
733
|
-
|
|
733
|
+
bizType?: string;
|
|
734
734
|
/**
|
|
735
735
|
* @remarks
|
|
736
736
|
* This parameter is required.
|
|
737
737
|
*
|
|
738
738
|
* @example
|
|
739
|
-
*
|
|
739
|
+
* 1dddwrqrq
|
|
740
740
|
*/
|
|
741
|
-
|
|
741
|
+
conferenceId?: string;
|
|
742
|
+
tenantContext?: AddRecordPermissionRequestTenantContext;
|
|
743
|
+
/**
|
|
744
|
+
* @remarks
|
|
745
|
+
* This parameter is required.
|
|
746
|
+
*
|
|
747
|
+
* @example
|
|
748
|
+
* 012345
|
|
749
|
+
*/
|
|
750
|
+
userId?: string;
|
|
742
751
|
static names(): { [key: string]: string } {
|
|
743
752
|
return {
|
|
744
|
-
|
|
745
|
-
|
|
753
|
+
bizType: 'BizType',
|
|
754
|
+
conferenceId: 'ConferenceId',
|
|
755
|
+
tenantContext: 'TenantContext',
|
|
756
|
+
userId: 'UserId',
|
|
746
757
|
};
|
|
747
758
|
}
|
|
748
759
|
|
|
749
760
|
static types(): { [key: string]: any } {
|
|
750
761
|
return {
|
|
751
|
-
|
|
752
|
-
|
|
762
|
+
bizType: 'string',
|
|
763
|
+
conferenceId: 'string',
|
|
764
|
+
tenantContext: AddRecordPermissionRequestTenantContext,
|
|
765
|
+
userId: 'string',
|
|
753
766
|
};
|
|
754
767
|
}
|
|
755
768
|
|
|
@@ -758,31 +771,91 @@ export class AddScenegroupMemberRequest extends $tea.Model {
|
|
|
758
771
|
}
|
|
759
772
|
}
|
|
760
773
|
|
|
761
|
-
export class
|
|
774
|
+
export class AddRecordPermissionShrinkRequest extends $tea.Model {
|
|
762
775
|
/**
|
|
763
776
|
* @remarks
|
|
764
|
-
*
|
|
777
|
+
* This parameter is required.
|
|
778
|
+
*
|
|
779
|
+
* @example
|
|
780
|
+
* minutes
|
|
781
|
+
*/
|
|
782
|
+
bizType?: string;
|
|
783
|
+
/**
|
|
784
|
+
* @remarks
|
|
785
|
+
* This parameter is required.
|
|
765
786
|
*
|
|
787
|
+
* @example
|
|
788
|
+
* 1dddwrqrq
|
|
789
|
+
*/
|
|
790
|
+
conferenceId?: string;
|
|
791
|
+
tenantContextShrink?: string;
|
|
792
|
+
/**
|
|
793
|
+
* @remarks
|
|
794
|
+
* This parameter is required.
|
|
795
|
+
*
|
|
796
|
+
* @example
|
|
797
|
+
* 012345
|
|
798
|
+
*/
|
|
799
|
+
userId?: string;
|
|
800
|
+
static names(): { [key: string]: string } {
|
|
801
|
+
return {
|
|
802
|
+
bizType: 'BizType',
|
|
803
|
+
conferenceId: 'ConferenceId',
|
|
804
|
+
tenantContextShrink: 'TenantContext',
|
|
805
|
+
userId: 'UserId',
|
|
806
|
+
};
|
|
807
|
+
}
|
|
808
|
+
|
|
809
|
+
static types(): { [key: string]: any } {
|
|
810
|
+
return {
|
|
811
|
+
bizType: 'string',
|
|
812
|
+
conferenceId: 'string',
|
|
813
|
+
tenantContextShrink: 'string',
|
|
814
|
+
userId: 'string',
|
|
815
|
+
};
|
|
816
|
+
}
|
|
817
|
+
|
|
818
|
+
constructor(map?: { [key: string]: any }) {
|
|
819
|
+
super(map);
|
|
820
|
+
}
|
|
821
|
+
}
|
|
822
|
+
|
|
823
|
+
export class AddRecordPermissionResponseBody extends $tea.Model {
|
|
824
|
+
/**
|
|
825
|
+
* @example
|
|
826
|
+
* 200
|
|
827
|
+
*/
|
|
828
|
+
code?: string;
|
|
829
|
+
/**
|
|
766
830
|
* @example
|
|
767
831
|
* 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
|
|
768
832
|
*/
|
|
769
833
|
requestId?: string;
|
|
770
834
|
/**
|
|
771
835
|
* @example
|
|
772
|
-
*
|
|
836
|
+
* 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
|
|
773
837
|
*/
|
|
774
|
-
|
|
838
|
+
vendorRequestId?: string;
|
|
839
|
+
/**
|
|
840
|
+
* @example
|
|
841
|
+
* dingtalk
|
|
842
|
+
*/
|
|
843
|
+
vendorType?: string;
|
|
775
844
|
static names(): { [key: string]: string } {
|
|
776
845
|
return {
|
|
846
|
+
code: 'code',
|
|
777
847
|
requestId: 'requestId',
|
|
778
|
-
|
|
848
|
+
vendorRequestId: 'vendorRequestId',
|
|
849
|
+
vendorType: 'vendorType',
|
|
779
850
|
};
|
|
780
851
|
}
|
|
781
852
|
|
|
782
853
|
static types(): { [key: string]: any } {
|
|
783
854
|
return {
|
|
855
|
+
code: 'string',
|
|
784
856
|
requestId: 'string',
|
|
785
|
-
|
|
857
|
+
vendorRequestId: 'string',
|
|
858
|
+
vendorType: 'string',
|
|
786
859
|
};
|
|
787
860
|
}
|
|
788
861
|
|
|
@@ -791,10 +864,10 @@ export class AddScenegroupMemberResponseBody extends $tea.Model {
|
|
|
791
864
|
}
|
|
792
865
|
}
|
|
793
866
|
|
|
794
|
-
export class
|
|
867
|
+
export class AddRecordPermissionResponse extends $tea.Model {
|
|
795
868
|
headers?: { [key: string]: string };
|
|
796
869
|
statusCode?: number;
|
|
797
|
-
body?:
|
|
870
|
+
body?: AddRecordPermissionResponseBody;
|
|
798
871
|
static names(): { [key: string]: string } {
|
|
799
872
|
return {
|
|
800
873
|
headers: 'headers',
|
|
@@ -807,7 +880,7 @@ export class AddScenegroupMemberResponse extends $tea.Model {
|
|
|
807
880
|
return {
|
|
808
881
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
809
882
|
statusCode: 'number',
|
|
810
|
-
body:
|
|
883
|
+
body: AddRecordPermissionResponseBody,
|
|
811
884
|
};
|
|
812
885
|
}
|
|
813
886
|
|
|
@@ -816,9 +889,9 @@ export class AddScenegroupMemberResponse extends $tea.Model {
|
|
|
816
889
|
}
|
|
817
890
|
}
|
|
818
891
|
|
|
819
|
-
export class
|
|
892
|
+
export class AddScenegroupMemberHeaders extends $tea.Model {
|
|
820
893
|
commonHeaders?: { [key: string]: string };
|
|
821
|
-
accountContext?:
|
|
894
|
+
accountContext?: AddScenegroupMemberHeadersAccountContext;
|
|
822
895
|
static names(): { [key: string]: string } {
|
|
823
896
|
return {
|
|
824
897
|
commonHeaders: 'commonHeaders',
|
|
@@ -829,7 +902,7 @@ export class AddWorkspaceHeaders extends $tea.Model {
|
|
|
829
902
|
static types(): { [key: string]: any } {
|
|
830
903
|
return {
|
|
831
904
|
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
832
|
-
accountContext:
|
|
905
|
+
accountContext: AddScenegroupMemberHeadersAccountContext,
|
|
833
906
|
};
|
|
834
907
|
}
|
|
835
908
|
|
|
@@ -838,7 +911,7 @@ export class AddWorkspaceHeaders extends $tea.Model {
|
|
|
838
911
|
}
|
|
839
912
|
}
|
|
840
913
|
|
|
841
|
-
export class
|
|
914
|
+
export class AddScenegroupMemberShrinkHeaders extends $tea.Model {
|
|
842
915
|
commonHeaders?: { [key: string]: string };
|
|
843
916
|
accountContextShrink?: string;
|
|
844
917
|
static names(): { [key: string]: string } {
|
|
@@ -860,56 +933,34 @@ export class AddWorkspaceShrinkHeaders extends $tea.Model {
|
|
|
860
933
|
}
|
|
861
934
|
}
|
|
862
935
|
|
|
863
|
-
export class
|
|
936
|
+
export class AddScenegroupMemberRequest extends $tea.Model {
|
|
864
937
|
/**
|
|
865
938
|
* @remarks
|
|
866
939
|
* This parameter is required.
|
|
940
|
+
*
|
|
941
|
+
* @example
|
|
942
|
+
* cidt*****Xa4K10w==
|
|
867
943
|
*/
|
|
868
|
-
|
|
869
|
-
option?: AddWorkspaceRequestOption;
|
|
870
|
-
tenantContext?: AddWorkspaceRequestTenantContext;
|
|
871
|
-
static names(): { [key: string]: string } {
|
|
872
|
-
return {
|
|
873
|
-
name: 'Name',
|
|
874
|
-
option: 'Option',
|
|
875
|
-
tenantContext: 'TenantContext',
|
|
876
|
-
};
|
|
877
|
-
}
|
|
878
|
-
|
|
879
|
-
static types(): { [key: string]: any } {
|
|
880
|
-
return {
|
|
881
|
-
name: 'string',
|
|
882
|
-
option: AddWorkspaceRequestOption,
|
|
883
|
-
tenantContext: AddWorkspaceRequestTenantContext,
|
|
884
|
-
};
|
|
885
|
-
}
|
|
886
|
-
|
|
887
|
-
constructor(map?: { [key: string]: any }) {
|
|
888
|
-
super(map);
|
|
889
|
-
}
|
|
890
|
-
}
|
|
891
|
-
|
|
892
|
-
export class AddWorkspaceShrinkRequest extends $tea.Model {
|
|
944
|
+
openConversationId?: string;
|
|
893
945
|
/**
|
|
894
946
|
* @remarks
|
|
895
947
|
* This parameter is required.
|
|
948
|
+
*
|
|
949
|
+
* @example
|
|
950
|
+
* 123xx,224xx
|
|
896
951
|
*/
|
|
897
|
-
|
|
898
|
-
optionShrink?: string;
|
|
899
|
-
tenantContextShrink?: string;
|
|
952
|
+
userIds?: string;
|
|
900
953
|
static names(): { [key: string]: string } {
|
|
901
954
|
return {
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
tenantContextShrink: 'TenantContext',
|
|
955
|
+
openConversationId: 'OpenConversationId',
|
|
956
|
+
userIds: 'UserIds',
|
|
905
957
|
};
|
|
906
958
|
}
|
|
907
959
|
|
|
908
960
|
static types(): { [key: string]: any } {
|
|
909
961
|
return {
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
tenantContextShrink: 'string',
|
|
962
|
+
openConversationId: 'string',
|
|
963
|
+
userIds: 'string',
|
|
913
964
|
};
|
|
914
965
|
}
|
|
915
966
|
|
|
@@ -918,7 +969,7 @@ export class AddWorkspaceShrinkRequest extends $tea.Model {
|
|
|
918
969
|
}
|
|
919
970
|
}
|
|
920
971
|
|
|
921
|
-
export class
|
|
972
|
+
export class AddScenegroupMemberResponseBody extends $tea.Model {
|
|
922
973
|
/**
|
|
923
974
|
* @remarks
|
|
924
975
|
* requestId
|
|
@@ -927,18 +978,22 @@ export class AddWorkspaceResponseBody extends $tea.Model {
|
|
|
927
978
|
* 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
|
|
928
979
|
*/
|
|
929
980
|
requestId?: string;
|
|
930
|
-
|
|
981
|
+
/**
|
|
982
|
+
* @example
|
|
983
|
+
* true
|
|
984
|
+
*/
|
|
985
|
+
success?: boolean;
|
|
931
986
|
static names(): { [key: string]: string } {
|
|
932
987
|
return {
|
|
933
988
|
requestId: 'requestId',
|
|
934
|
-
|
|
989
|
+
success: 'success',
|
|
935
990
|
};
|
|
936
991
|
}
|
|
937
992
|
|
|
938
993
|
static types(): { [key: string]: any } {
|
|
939
994
|
return {
|
|
940
995
|
requestId: 'string',
|
|
941
|
-
|
|
996
|
+
success: 'boolean',
|
|
942
997
|
};
|
|
943
998
|
}
|
|
944
999
|
|
|
@@ -947,10 +1002,10 @@ export class AddWorkspaceResponseBody extends $tea.Model {
|
|
|
947
1002
|
}
|
|
948
1003
|
}
|
|
949
1004
|
|
|
950
|
-
export class
|
|
1005
|
+
export class AddScenegroupMemberResponse extends $tea.Model {
|
|
951
1006
|
headers?: { [key: string]: string };
|
|
952
1007
|
statusCode?: number;
|
|
953
|
-
body?:
|
|
1008
|
+
body?: AddScenegroupMemberResponseBody;
|
|
954
1009
|
static names(): { [key: string]: string } {
|
|
955
1010
|
return {
|
|
956
1011
|
headers: 'headers',
|
|
@@ -963,7 +1018,7 @@ export class AddWorkspaceResponse extends $tea.Model {
|
|
|
963
1018
|
return {
|
|
964
1019
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
965
1020
|
statusCode: 'number',
|
|
966
|
-
body:
|
|
1021
|
+
body: AddScenegroupMemberResponseBody,
|
|
967
1022
|
};
|
|
968
1023
|
}
|
|
969
1024
|
|
|
@@ -972,9 +1027,9 @@ export class AddWorkspaceResponse extends $tea.Model {
|
|
|
972
1027
|
}
|
|
973
1028
|
}
|
|
974
1029
|
|
|
975
|
-
export class
|
|
1030
|
+
export class AddWorkspaceHeaders extends $tea.Model {
|
|
976
1031
|
commonHeaders?: { [key: string]: string };
|
|
977
|
-
accountContext?:
|
|
1032
|
+
accountContext?: AddWorkspaceHeadersAccountContext;
|
|
978
1033
|
static names(): { [key: string]: string } {
|
|
979
1034
|
return {
|
|
980
1035
|
commonHeaders: 'commonHeaders',
|
|
@@ -985,7 +1040,7 @@ export class AddWorkspaceDocMembersHeaders extends $tea.Model {
|
|
|
985
1040
|
static types(): { [key: string]: any } {
|
|
986
1041
|
return {
|
|
987
1042
|
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
988
|
-
accountContext:
|
|
1043
|
+
accountContext: AddWorkspaceHeadersAccountContext,
|
|
989
1044
|
};
|
|
990
1045
|
}
|
|
991
1046
|
|
|
@@ -994,7 +1049,7 @@ export class AddWorkspaceDocMembersHeaders extends $tea.Model {
|
|
|
994
1049
|
}
|
|
995
1050
|
}
|
|
996
1051
|
|
|
997
|
-
export class
|
|
1052
|
+
export class AddWorkspaceShrinkHeaders extends $tea.Model {
|
|
998
1053
|
commonHeaders?: { [key: string]: string };
|
|
999
1054
|
accountContextShrink?: string;
|
|
1000
1055
|
static names(): { [key: string]: string } {
|
|
@@ -1016,44 +1071,27 @@ export class AddWorkspaceDocMembersShrinkHeaders extends $tea.Model {
|
|
|
1016
1071
|
}
|
|
1017
1072
|
}
|
|
1018
1073
|
|
|
1019
|
-
export class
|
|
1020
|
-
/**
|
|
1021
|
-
* @remarks
|
|
1022
|
-
* This parameter is required.
|
|
1023
|
-
*/
|
|
1024
|
-
members?: AddWorkspaceDocMembersRequestMembers[];
|
|
1025
|
-
/**
|
|
1026
|
-
* @remarks
|
|
1027
|
-
* This parameter is required.
|
|
1028
|
-
*
|
|
1029
|
-
* @example
|
|
1030
|
-
* xxx
|
|
1031
|
-
*/
|
|
1032
|
-
nodeId?: string;
|
|
1033
|
-
tenantContext?: AddWorkspaceDocMembersRequestTenantContext;
|
|
1074
|
+
export class AddWorkspaceRequest extends $tea.Model {
|
|
1034
1075
|
/**
|
|
1035
1076
|
* @remarks
|
|
1036
1077
|
* This parameter is required.
|
|
1037
|
-
*
|
|
1038
|
-
* @example
|
|
1039
|
-
* xxx
|
|
1040
1078
|
*/
|
|
1041
|
-
|
|
1079
|
+
name?: string;
|
|
1080
|
+
option?: AddWorkspaceRequestOption;
|
|
1081
|
+
tenantContext?: AddWorkspaceRequestTenantContext;
|
|
1042
1082
|
static names(): { [key: string]: string } {
|
|
1043
1083
|
return {
|
|
1044
|
-
|
|
1045
|
-
|
|
1084
|
+
name: 'Name',
|
|
1085
|
+
option: 'Option',
|
|
1046
1086
|
tenantContext: 'TenantContext',
|
|
1047
|
-
workspaceId: 'WorkspaceId',
|
|
1048
1087
|
};
|
|
1049
1088
|
}
|
|
1050
1089
|
|
|
1051
1090
|
static types(): { [key: string]: any } {
|
|
1052
1091
|
return {
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
tenantContext:
|
|
1056
|
-
workspaceId: 'string',
|
|
1092
|
+
name: 'string',
|
|
1093
|
+
option: AddWorkspaceRequestOption,
|
|
1094
|
+
tenantContext: AddWorkspaceRequestTenantContext,
|
|
1057
1095
|
};
|
|
1058
1096
|
}
|
|
1059
1097
|
|
|
@@ -1062,44 +1100,27 @@ export class AddWorkspaceDocMembersRequest extends $tea.Model {
|
|
|
1062
1100
|
}
|
|
1063
1101
|
}
|
|
1064
1102
|
|
|
1065
|
-
export class
|
|
1066
|
-
/**
|
|
1067
|
-
* @remarks
|
|
1068
|
-
* This parameter is required.
|
|
1069
|
-
*/
|
|
1070
|
-
membersShrink?: string;
|
|
1103
|
+
export class AddWorkspaceShrinkRequest extends $tea.Model {
|
|
1071
1104
|
/**
|
|
1072
1105
|
* @remarks
|
|
1073
1106
|
* This parameter is required.
|
|
1074
|
-
*
|
|
1075
|
-
* @example
|
|
1076
|
-
* xxx
|
|
1077
1107
|
*/
|
|
1078
|
-
|
|
1108
|
+
name?: string;
|
|
1109
|
+
optionShrink?: string;
|
|
1079
1110
|
tenantContextShrink?: string;
|
|
1080
|
-
/**
|
|
1081
|
-
* @remarks
|
|
1082
|
-
* This parameter is required.
|
|
1083
|
-
*
|
|
1084
|
-
* @example
|
|
1085
|
-
* xxx
|
|
1086
|
-
*/
|
|
1087
|
-
workspaceId?: string;
|
|
1088
1111
|
static names(): { [key: string]: string } {
|
|
1089
1112
|
return {
|
|
1090
|
-
|
|
1091
|
-
|
|
1113
|
+
name: 'Name',
|
|
1114
|
+
optionShrink: 'Option',
|
|
1092
1115
|
tenantContextShrink: 'TenantContext',
|
|
1093
|
-
workspaceId: 'WorkspaceId',
|
|
1094
1116
|
};
|
|
1095
1117
|
}
|
|
1096
1118
|
|
|
1097
1119
|
static types(): { [key: string]: any } {
|
|
1098
1120
|
return {
|
|
1099
|
-
|
|
1100
|
-
|
|
1121
|
+
name: 'string',
|
|
1122
|
+
optionShrink: 'string',
|
|
1101
1123
|
tenantContextShrink: 'string',
|
|
1102
|
-
workspaceId: 'string',
|
|
1103
1124
|
};
|
|
1104
1125
|
}
|
|
1105
1126
|
|
|
@@ -1108,7 +1129,7 @@ export class AddWorkspaceDocMembersShrinkRequest extends $tea.Model {
|
|
|
1108
1129
|
}
|
|
1109
1130
|
}
|
|
1110
1131
|
|
|
1111
|
-
export class
|
|
1132
|
+
export class AddWorkspaceResponseBody extends $tea.Model {
|
|
1112
1133
|
/**
|
|
1113
1134
|
* @remarks
|
|
1114
1135
|
* requestId
|
|
@@ -1117,15 +1138,18 @@ export class AddWorkspaceDocMembersResponseBody extends $tea.Model {
|
|
|
1117
1138
|
* 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
|
|
1118
1139
|
*/
|
|
1119
1140
|
requestId?: string;
|
|
1141
|
+
workspace?: AddWorkspaceResponseBodyWorkspace;
|
|
1120
1142
|
static names(): { [key: string]: string } {
|
|
1121
1143
|
return {
|
|
1122
1144
|
requestId: 'requestId',
|
|
1145
|
+
workspace: 'workspace',
|
|
1123
1146
|
};
|
|
1124
1147
|
}
|
|
1125
1148
|
|
|
1126
1149
|
static types(): { [key: string]: any } {
|
|
1127
1150
|
return {
|
|
1128
1151
|
requestId: 'string',
|
|
1152
|
+
workspace: AddWorkspaceResponseBodyWorkspace,
|
|
1129
1153
|
};
|
|
1130
1154
|
}
|
|
1131
1155
|
|
|
@@ -1134,10 +1158,10 @@ export class AddWorkspaceDocMembersResponseBody extends $tea.Model {
|
|
|
1134
1158
|
}
|
|
1135
1159
|
}
|
|
1136
1160
|
|
|
1137
|
-
export class
|
|
1161
|
+
export class AddWorkspaceResponse extends $tea.Model {
|
|
1138
1162
|
headers?: { [key: string]: string };
|
|
1139
1163
|
statusCode?: number;
|
|
1140
|
-
body?:
|
|
1164
|
+
body?: AddWorkspaceResponseBody;
|
|
1141
1165
|
static names(): { [key: string]: string } {
|
|
1142
1166
|
return {
|
|
1143
1167
|
headers: 'headers',
|
|
@@ -1150,7 +1174,7 @@ export class AddWorkspaceDocMembersResponse extends $tea.Model {
|
|
|
1150
1174
|
return {
|
|
1151
1175
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1152
1176
|
statusCode: 'number',
|
|
1153
|
-
body:
|
|
1177
|
+
body: AddWorkspaceResponseBody,
|
|
1154
1178
|
};
|
|
1155
1179
|
}
|
|
1156
1180
|
|
|
@@ -1159,9 +1183,9 @@ export class AddWorkspaceDocMembersResponse extends $tea.Model {
|
|
|
1159
1183
|
}
|
|
1160
1184
|
}
|
|
1161
1185
|
|
|
1162
|
-
export class
|
|
1186
|
+
export class AddWorkspaceDocMembersHeaders extends $tea.Model {
|
|
1163
1187
|
commonHeaders?: { [key: string]: string };
|
|
1164
|
-
accountContext?:
|
|
1188
|
+
accountContext?: AddWorkspaceDocMembersHeadersAccountContext;
|
|
1165
1189
|
static names(): { [key: string]: string } {
|
|
1166
1190
|
return {
|
|
1167
1191
|
commonHeaders: 'commonHeaders',
|
|
@@ -1172,7 +1196,7 @@ export class AddWorkspaceMembersHeaders extends $tea.Model {
|
|
|
1172
1196
|
static types(): { [key: string]: any } {
|
|
1173
1197
|
return {
|
|
1174
1198
|
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1175
|
-
accountContext:
|
|
1199
|
+
accountContext: AddWorkspaceDocMembersHeadersAccountContext,
|
|
1176
1200
|
};
|
|
1177
1201
|
}
|
|
1178
1202
|
|
|
@@ -1181,7 +1205,194 @@ export class AddWorkspaceMembersHeaders extends $tea.Model {
|
|
|
1181
1205
|
}
|
|
1182
1206
|
}
|
|
1183
1207
|
|
|
1184
|
-
export class
|
|
1208
|
+
export class AddWorkspaceDocMembersShrinkHeaders extends $tea.Model {
|
|
1209
|
+
commonHeaders?: { [key: string]: string };
|
|
1210
|
+
accountContextShrink?: string;
|
|
1211
|
+
static names(): { [key: string]: string } {
|
|
1212
|
+
return {
|
|
1213
|
+
commonHeaders: 'commonHeaders',
|
|
1214
|
+
accountContextShrink: 'AccountContext',
|
|
1215
|
+
};
|
|
1216
|
+
}
|
|
1217
|
+
|
|
1218
|
+
static types(): { [key: string]: any } {
|
|
1219
|
+
return {
|
|
1220
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1221
|
+
accountContextShrink: 'string',
|
|
1222
|
+
};
|
|
1223
|
+
}
|
|
1224
|
+
|
|
1225
|
+
constructor(map?: { [key: string]: any }) {
|
|
1226
|
+
super(map);
|
|
1227
|
+
}
|
|
1228
|
+
}
|
|
1229
|
+
|
|
1230
|
+
export class AddWorkspaceDocMembersRequest extends $tea.Model {
|
|
1231
|
+
/**
|
|
1232
|
+
* @remarks
|
|
1233
|
+
* This parameter is required.
|
|
1234
|
+
*/
|
|
1235
|
+
members?: AddWorkspaceDocMembersRequestMembers[];
|
|
1236
|
+
/**
|
|
1237
|
+
* @remarks
|
|
1238
|
+
* This parameter is required.
|
|
1239
|
+
*
|
|
1240
|
+
* @example
|
|
1241
|
+
* xxx
|
|
1242
|
+
*/
|
|
1243
|
+
nodeId?: string;
|
|
1244
|
+
tenantContext?: AddWorkspaceDocMembersRequestTenantContext;
|
|
1245
|
+
/**
|
|
1246
|
+
* @remarks
|
|
1247
|
+
* This parameter is required.
|
|
1248
|
+
*
|
|
1249
|
+
* @example
|
|
1250
|
+
* xxx
|
|
1251
|
+
*/
|
|
1252
|
+
workspaceId?: string;
|
|
1253
|
+
static names(): { [key: string]: string } {
|
|
1254
|
+
return {
|
|
1255
|
+
members: 'Members',
|
|
1256
|
+
nodeId: 'NodeId',
|
|
1257
|
+
tenantContext: 'TenantContext',
|
|
1258
|
+
workspaceId: 'WorkspaceId',
|
|
1259
|
+
};
|
|
1260
|
+
}
|
|
1261
|
+
|
|
1262
|
+
static types(): { [key: string]: any } {
|
|
1263
|
+
return {
|
|
1264
|
+
members: { 'type': 'array', 'itemType': AddWorkspaceDocMembersRequestMembers },
|
|
1265
|
+
nodeId: 'string',
|
|
1266
|
+
tenantContext: AddWorkspaceDocMembersRequestTenantContext,
|
|
1267
|
+
workspaceId: 'string',
|
|
1268
|
+
};
|
|
1269
|
+
}
|
|
1270
|
+
|
|
1271
|
+
constructor(map?: { [key: string]: any }) {
|
|
1272
|
+
super(map);
|
|
1273
|
+
}
|
|
1274
|
+
}
|
|
1275
|
+
|
|
1276
|
+
export class AddWorkspaceDocMembersShrinkRequest extends $tea.Model {
|
|
1277
|
+
/**
|
|
1278
|
+
* @remarks
|
|
1279
|
+
* This parameter is required.
|
|
1280
|
+
*/
|
|
1281
|
+
membersShrink?: string;
|
|
1282
|
+
/**
|
|
1283
|
+
* @remarks
|
|
1284
|
+
* This parameter is required.
|
|
1285
|
+
*
|
|
1286
|
+
* @example
|
|
1287
|
+
* xxx
|
|
1288
|
+
*/
|
|
1289
|
+
nodeId?: string;
|
|
1290
|
+
tenantContextShrink?: string;
|
|
1291
|
+
/**
|
|
1292
|
+
* @remarks
|
|
1293
|
+
* This parameter is required.
|
|
1294
|
+
*
|
|
1295
|
+
* @example
|
|
1296
|
+
* xxx
|
|
1297
|
+
*/
|
|
1298
|
+
workspaceId?: string;
|
|
1299
|
+
static names(): { [key: string]: string } {
|
|
1300
|
+
return {
|
|
1301
|
+
membersShrink: 'Members',
|
|
1302
|
+
nodeId: 'NodeId',
|
|
1303
|
+
tenantContextShrink: 'TenantContext',
|
|
1304
|
+
workspaceId: 'WorkspaceId',
|
|
1305
|
+
};
|
|
1306
|
+
}
|
|
1307
|
+
|
|
1308
|
+
static types(): { [key: string]: any } {
|
|
1309
|
+
return {
|
|
1310
|
+
membersShrink: 'string',
|
|
1311
|
+
nodeId: 'string',
|
|
1312
|
+
tenantContextShrink: 'string',
|
|
1313
|
+
workspaceId: 'string',
|
|
1314
|
+
};
|
|
1315
|
+
}
|
|
1316
|
+
|
|
1317
|
+
constructor(map?: { [key: string]: any }) {
|
|
1318
|
+
super(map);
|
|
1319
|
+
}
|
|
1320
|
+
}
|
|
1321
|
+
|
|
1322
|
+
export class AddWorkspaceDocMembersResponseBody extends $tea.Model {
|
|
1323
|
+
/**
|
|
1324
|
+
* @remarks
|
|
1325
|
+
* requestId
|
|
1326
|
+
*
|
|
1327
|
+
* @example
|
|
1328
|
+
* 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
|
|
1329
|
+
*/
|
|
1330
|
+
requestId?: string;
|
|
1331
|
+
static names(): { [key: string]: string } {
|
|
1332
|
+
return {
|
|
1333
|
+
requestId: 'requestId',
|
|
1334
|
+
};
|
|
1335
|
+
}
|
|
1336
|
+
|
|
1337
|
+
static types(): { [key: string]: any } {
|
|
1338
|
+
return {
|
|
1339
|
+
requestId: 'string',
|
|
1340
|
+
};
|
|
1341
|
+
}
|
|
1342
|
+
|
|
1343
|
+
constructor(map?: { [key: string]: any }) {
|
|
1344
|
+
super(map);
|
|
1345
|
+
}
|
|
1346
|
+
}
|
|
1347
|
+
|
|
1348
|
+
export class AddWorkspaceDocMembersResponse extends $tea.Model {
|
|
1349
|
+
headers?: { [key: string]: string };
|
|
1350
|
+
statusCode?: number;
|
|
1351
|
+
body?: AddWorkspaceDocMembersResponseBody;
|
|
1352
|
+
static names(): { [key: string]: string } {
|
|
1353
|
+
return {
|
|
1354
|
+
headers: 'headers',
|
|
1355
|
+
statusCode: 'statusCode',
|
|
1356
|
+
body: 'body',
|
|
1357
|
+
};
|
|
1358
|
+
}
|
|
1359
|
+
|
|
1360
|
+
static types(): { [key: string]: any } {
|
|
1361
|
+
return {
|
|
1362
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1363
|
+
statusCode: 'number',
|
|
1364
|
+
body: AddWorkspaceDocMembersResponseBody,
|
|
1365
|
+
};
|
|
1366
|
+
}
|
|
1367
|
+
|
|
1368
|
+
constructor(map?: { [key: string]: any }) {
|
|
1369
|
+
super(map);
|
|
1370
|
+
}
|
|
1371
|
+
}
|
|
1372
|
+
|
|
1373
|
+
export class AddWorkspaceMembersHeaders extends $tea.Model {
|
|
1374
|
+
commonHeaders?: { [key: string]: string };
|
|
1375
|
+
accountContext?: AddWorkspaceMembersHeadersAccountContext;
|
|
1376
|
+
static names(): { [key: string]: string } {
|
|
1377
|
+
return {
|
|
1378
|
+
commonHeaders: 'commonHeaders',
|
|
1379
|
+
accountContext: 'AccountContext',
|
|
1380
|
+
};
|
|
1381
|
+
}
|
|
1382
|
+
|
|
1383
|
+
static types(): { [key: string]: any } {
|
|
1384
|
+
return {
|
|
1385
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1386
|
+
accountContext: AddWorkspaceMembersHeadersAccountContext,
|
|
1387
|
+
};
|
|
1388
|
+
}
|
|
1389
|
+
|
|
1390
|
+
constructor(map?: { [key: string]: any }) {
|
|
1391
|
+
super(map);
|
|
1392
|
+
}
|
|
1393
|
+
}
|
|
1394
|
+
|
|
1395
|
+
export class AddWorkspaceMembersShrinkHeaders extends $tea.Model {
|
|
1185
1396
|
commonHeaders?: { [key: string]: string };
|
|
1186
1397
|
accountContextShrink?: string;
|
|
1187
1398
|
static names(): { [key: string]: string } {
|
|
@@ -4547,6 +4758,7 @@ export class CreateEventShrinkHeaders extends $tea.Model {
|
|
|
4547
4758
|
|
|
4548
4759
|
export class CreateEventRequest extends $tea.Model {
|
|
4549
4760
|
attendees?: CreateEventRequestAttendees[];
|
|
4761
|
+
cardInstances?: CreateEventRequestCardInstances[];
|
|
4550
4762
|
description?: string;
|
|
4551
4763
|
end?: CreateEventRequestEnd;
|
|
4552
4764
|
extra?: { [key: string]: string };
|
|
@@ -4586,6 +4798,7 @@ export class CreateEventRequest extends $tea.Model {
|
|
|
4586
4798
|
static names(): { [key: string]: string } {
|
|
4587
4799
|
return {
|
|
4588
4800
|
attendees: 'Attendees',
|
|
4801
|
+
cardInstances: 'CardInstances',
|
|
4589
4802
|
description: 'Description',
|
|
4590
4803
|
end: 'End',
|
|
4591
4804
|
extra: 'Extra',
|
|
@@ -4605,6 +4818,7 @@ export class CreateEventRequest extends $tea.Model {
|
|
|
4605
4818
|
static types(): { [key: string]: any } {
|
|
4606
4819
|
return {
|
|
4607
4820
|
attendees: { 'type': 'array', 'itemType': CreateEventRequestAttendees },
|
|
4821
|
+
cardInstances: { 'type': 'array', 'itemType': CreateEventRequestCardInstances },
|
|
4608
4822
|
description: 'string',
|
|
4609
4823
|
end: CreateEventRequestEnd,
|
|
4610
4824
|
extra: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
@@ -4628,6 +4842,7 @@ export class CreateEventRequest extends $tea.Model {
|
|
|
4628
4842
|
|
|
4629
4843
|
export class CreateEventShrinkRequest extends $tea.Model {
|
|
4630
4844
|
attendeesShrink?: string;
|
|
4845
|
+
cardInstancesShrink?: string;
|
|
4631
4846
|
description?: string;
|
|
4632
4847
|
endShrink?: string;
|
|
4633
4848
|
extraShrink?: string;
|
|
@@ -4667,6 +4882,7 @@ export class CreateEventShrinkRequest extends $tea.Model {
|
|
|
4667
4882
|
static names(): { [key: string]: string } {
|
|
4668
4883
|
return {
|
|
4669
4884
|
attendeesShrink: 'Attendees',
|
|
4885
|
+
cardInstancesShrink: 'CardInstances',
|
|
4670
4886
|
description: 'Description',
|
|
4671
4887
|
endShrink: 'End',
|
|
4672
4888
|
extraShrink: 'Extra',
|
|
@@ -4686,6 +4902,7 @@ export class CreateEventShrinkRequest extends $tea.Model {
|
|
|
4686
4902
|
static types(): { [key: string]: any } {
|
|
4687
4903
|
return {
|
|
4688
4904
|
attendeesShrink: 'string',
|
|
4905
|
+
cardInstancesShrink: 'string',
|
|
4689
4906
|
description: 'string',
|
|
4690
4907
|
endShrink: 'string',
|
|
4691
4908
|
extraShrink: 'string',
|
|
@@ -19322,9 +19539,9 @@ export class GetSheetResponse extends $tea.Model {
|
|
|
19322
19539
|
}
|
|
19323
19540
|
}
|
|
19324
19541
|
|
|
19325
|
-
export class
|
|
19542
|
+
export class GetSheetContentJobIdHeaders extends $tea.Model {
|
|
19326
19543
|
commonHeaders?: { [key: string]: string };
|
|
19327
|
-
accountContext?:
|
|
19544
|
+
accountContext?: GetSheetContentJobIdHeadersAccountContext;
|
|
19328
19545
|
static names(): { [key: string]: string } {
|
|
19329
19546
|
return {
|
|
19330
19547
|
commonHeaders: 'commonHeaders',
|
|
@@ -19335,7 +19552,7 @@ export class GetSpaceDirectoriesHeaders extends $tea.Model {
|
|
|
19335
19552
|
static types(): { [key: string]: any } {
|
|
19336
19553
|
return {
|
|
19337
19554
|
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
19338
|
-
accountContext:
|
|
19555
|
+
accountContext: GetSheetContentJobIdHeadersAccountContext,
|
|
19339
19556
|
};
|
|
19340
19557
|
}
|
|
19341
19558
|
|
|
@@ -19344,7 +19561,7 @@ export class GetSpaceDirectoriesHeaders extends $tea.Model {
|
|
|
19344
19561
|
}
|
|
19345
19562
|
}
|
|
19346
19563
|
|
|
19347
|
-
export class
|
|
19564
|
+
export class GetSheetContentJobIdShrinkHeaders extends $tea.Model {
|
|
19348
19565
|
commonHeaders?: { [key: string]: string };
|
|
19349
19566
|
accountContextShrink?: string;
|
|
19350
19567
|
static names(): { [key: string]: string } {
|
|
@@ -19366,51 +19583,31 @@ export class GetSpaceDirectoriesShrinkHeaders extends $tea.Model {
|
|
|
19366
19583
|
}
|
|
19367
19584
|
}
|
|
19368
19585
|
|
|
19369
|
-
export class
|
|
19586
|
+
export class GetSheetContentJobIdRequest extends $tea.Model {
|
|
19370
19587
|
/**
|
|
19371
19588
|
* @example
|
|
19372
|
-
*
|
|
19589
|
+
* MNDoBb60VLYDGNPytQe7Gzp4JlemrZQ3
|
|
19373
19590
|
*/
|
|
19374
|
-
|
|
19375
|
-
/**
|
|
19376
|
-
* @remarks
|
|
19377
|
-
* This parameter is required.
|
|
19378
|
-
*
|
|
19379
|
-
* @example
|
|
19380
|
-
* 30
|
|
19381
|
-
*/
|
|
19382
|
-
maxResults?: number;
|
|
19383
|
-
/**
|
|
19384
|
-
* @example
|
|
19385
|
-
* 123123
|
|
19386
|
-
*/
|
|
19387
|
-
nextToken?: string;
|
|
19591
|
+
dentryUuid?: string;
|
|
19388
19592
|
/**
|
|
19389
|
-
* @remarks
|
|
19390
|
-
* This parameter is required.
|
|
19391
|
-
*
|
|
19392
19593
|
* @example
|
|
19393
|
-
*
|
|
19594
|
+
* dingTalksheetToxlsx
|
|
19394
19595
|
*/
|
|
19395
|
-
|
|
19396
|
-
tenantContext?:
|
|
19596
|
+
exportType?: string;
|
|
19597
|
+
tenantContext?: GetSheetContentJobIdRequestTenantContext;
|
|
19397
19598
|
static names(): { [key: string]: string } {
|
|
19398
19599
|
return {
|
|
19399
|
-
|
|
19400
|
-
|
|
19401
|
-
nextToken: 'NextToken',
|
|
19402
|
-
spaceId: 'SpaceId',
|
|
19600
|
+
dentryUuid: 'DentryUuid',
|
|
19601
|
+
exportType: 'ExportType',
|
|
19403
19602
|
tenantContext: 'TenantContext',
|
|
19404
19603
|
};
|
|
19405
19604
|
}
|
|
19406
19605
|
|
|
19407
19606
|
static types(): { [key: string]: any } {
|
|
19408
19607
|
return {
|
|
19409
|
-
|
|
19410
|
-
|
|
19411
|
-
|
|
19412
|
-
spaceId: 'string',
|
|
19413
|
-
tenantContext: GetSpaceDirectoriesRequestTenantContext,
|
|
19608
|
+
dentryUuid: 'string',
|
|
19609
|
+
exportType: 'string',
|
|
19610
|
+
tenantContext: GetSheetContentJobIdRequestTenantContext,
|
|
19414
19611
|
};
|
|
19415
19612
|
}
|
|
19416
19613
|
|
|
@@ -19419,50 +19616,30 @@ export class GetSpaceDirectoriesRequest extends $tea.Model {
|
|
|
19419
19616
|
}
|
|
19420
19617
|
}
|
|
19421
19618
|
|
|
19422
|
-
export class
|
|
19619
|
+
export class GetSheetContentJobIdShrinkRequest extends $tea.Model {
|
|
19423
19620
|
/**
|
|
19424
19621
|
* @example
|
|
19425
|
-
*
|
|
19622
|
+
* MNDoBb60VLYDGNPytQe7Gzp4JlemrZQ3
|
|
19426
19623
|
*/
|
|
19427
|
-
|
|
19428
|
-
/**
|
|
19429
|
-
* @remarks
|
|
19430
|
-
* This parameter is required.
|
|
19431
|
-
*
|
|
19432
|
-
* @example
|
|
19433
|
-
* 30
|
|
19434
|
-
*/
|
|
19435
|
-
maxResults?: number;
|
|
19436
|
-
/**
|
|
19437
|
-
* @example
|
|
19438
|
-
* 123123
|
|
19439
|
-
*/
|
|
19440
|
-
nextToken?: string;
|
|
19624
|
+
dentryUuid?: string;
|
|
19441
19625
|
/**
|
|
19442
|
-
* @remarks
|
|
19443
|
-
* This parameter is required.
|
|
19444
|
-
*
|
|
19445
19626
|
* @example
|
|
19446
|
-
*
|
|
19627
|
+
* dingTalksheetToxlsx
|
|
19447
19628
|
*/
|
|
19448
|
-
|
|
19629
|
+
exportType?: string;
|
|
19449
19630
|
tenantContextShrink?: string;
|
|
19450
19631
|
static names(): { [key: string]: string } {
|
|
19451
19632
|
return {
|
|
19452
|
-
|
|
19453
|
-
|
|
19454
|
-
nextToken: 'NextToken',
|
|
19455
|
-
spaceId: 'SpaceId',
|
|
19633
|
+
dentryUuid: 'DentryUuid',
|
|
19634
|
+
exportType: 'ExportType',
|
|
19456
19635
|
tenantContextShrink: 'TenantContext',
|
|
19457
19636
|
};
|
|
19458
19637
|
}
|
|
19459
19638
|
|
|
19460
19639
|
static types(): { [key: string]: any } {
|
|
19461
19640
|
return {
|
|
19462
|
-
|
|
19463
|
-
|
|
19464
|
-
nextToken: 'string',
|
|
19465
|
-
spaceId: 'string',
|
|
19641
|
+
dentryUuid: 'string',
|
|
19642
|
+
exportType: 'string',
|
|
19466
19643
|
tenantContextShrink: 'string',
|
|
19467
19644
|
};
|
|
19468
19645
|
}
|
|
@@ -19472,41 +19649,49 @@ export class GetSpaceDirectoriesShrinkRequest extends $tea.Model {
|
|
|
19472
19649
|
}
|
|
19473
19650
|
}
|
|
19474
19651
|
|
|
19475
|
-
export class
|
|
19476
|
-
children?: GetSpaceDirectoriesResponseBodyChildren[];
|
|
19652
|
+
export class GetSheetContentJobIdResponseBody extends $tea.Model {
|
|
19477
19653
|
/**
|
|
19478
19654
|
* @example
|
|
19479
|
-
*
|
|
19655
|
+
* 14640056080
|
|
19480
19656
|
*/
|
|
19481
|
-
|
|
19657
|
+
jobId?: string;
|
|
19482
19658
|
/**
|
|
19483
19659
|
* @example
|
|
19484
|
-
*
|
|
19660
|
+
* 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
|
|
19485
19661
|
*/
|
|
19486
|
-
|
|
19662
|
+
requestId?: string;
|
|
19663
|
+
/**
|
|
19664
|
+
* @example
|
|
19665
|
+
* init
|
|
19666
|
+
*/
|
|
19667
|
+
status?: string;
|
|
19487
19668
|
/**
|
|
19488
|
-
* @remarks
|
|
19489
|
-
* requestId
|
|
19490
|
-
*
|
|
19491
19669
|
* @example
|
|
19492
19670
|
* 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
|
|
19493
19671
|
*/
|
|
19494
|
-
|
|
19672
|
+
vendorRequestId?: string;
|
|
19673
|
+
/**
|
|
19674
|
+
* @example
|
|
19675
|
+
* dingtalk
|
|
19676
|
+
*/
|
|
19677
|
+
vendorType?: string;
|
|
19495
19678
|
static names(): { [key: string]: string } {
|
|
19496
19679
|
return {
|
|
19497
|
-
|
|
19498
|
-
hasMore: 'hasMore',
|
|
19499
|
-
nextToken: 'nextToken',
|
|
19680
|
+
jobId: 'jobId',
|
|
19500
19681
|
requestId: 'requestId',
|
|
19682
|
+
status: 'status',
|
|
19683
|
+
vendorRequestId: 'vendorRequestId',
|
|
19684
|
+
vendorType: 'vendorType',
|
|
19501
19685
|
};
|
|
19502
19686
|
}
|
|
19503
19687
|
|
|
19504
19688
|
static types(): { [key: string]: any } {
|
|
19505
19689
|
return {
|
|
19506
|
-
|
|
19507
|
-
hasMore: 'boolean',
|
|
19508
|
-
nextToken: 'string',
|
|
19690
|
+
jobId: 'string',
|
|
19509
19691
|
requestId: 'string',
|
|
19692
|
+
status: 'string',
|
|
19693
|
+
vendorRequestId: 'string',
|
|
19694
|
+
vendorType: 'string',
|
|
19510
19695
|
};
|
|
19511
19696
|
}
|
|
19512
19697
|
|
|
@@ -19515,10 +19700,10 @@ export class GetSpaceDirectoriesResponseBody extends $tea.Model {
|
|
|
19515
19700
|
}
|
|
19516
19701
|
}
|
|
19517
19702
|
|
|
19518
|
-
export class
|
|
19703
|
+
export class GetSheetContentJobIdResponse extends $tea.Model {
|
|
19519
19704
|
headers?: { [key: string]: string };
|
|
19520
19705
|
statusCode?: number;
|
|
19521
|
-
body?:
|
|
19706
|
+
body?: GetSheetContentJobIdResponseBody;
|
|
19522
19707
|
static names(): { [key: string]: string } {
|
|
19523
19708
|
return {
|
|
19524
19709
|
headers: 'headers',
|
|
@@ -19531,7 +19716,7 @@ export class GetSpaceDirectoriesResponse extends $tea.Model {
|
|
|
19531
19716
|
return {
|
|
19532
19717
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
19533
19718
|
statusCode: 'number',
|
|
19534
|
-
body:
|
|
19719
|
+
body: GetSheetContentJobIdResponseBody,
|
|
19535
19720
|
};
|
|
19536
19721
|
}
|
|
19537
19722
|
|
|
@@ -19540,9 +19725,9 @@ export class GetSpaceDirectoriesResponse extends $tea.Model {
|
|
|
19540
19725
|
}
|
|
19541
19726
|
}
|
|
19542
19727
|
|
|
19543
|
-
export class
|
|
19728
|
+
export class GetSpaceDirectoriesHeaders extends $tea.Model {
|
|
19544
19729
|
commonHeaders?: { [key: string]: string };
|
|
19545
|
-
accountContext?:
|
|
19730
|
+
accountContext?: GetSpaceDirectoriesHeadersAccountContext;
|
|
19546
19731
|
static names(): { [key: string]: string } {
|
|
19547
19732
|
return {
|
|
19548
19733
|
commonHeaders: 'commonHeaders',
|
|
@@ -19553,7 +19738,7 @@ export class GetSubscribedCalendarHeaders extends $tea.Model {
|
|
|
19553
19738
|
static types(): { [key: string]: any } {
|
|
19554
19739
|
return {
|
|
19555
19740
|
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
19556
|
-
accountContext:
|
|
19741
|
+
accountContext: GetSpaceDirectoriesHeadersAccountContext,
|
|
19557
19742
|
};
|
|
19558
19743
|
}
|
|
19559
19744
|
|
|
@@ -19562,7 +19747,225 @@ export class GetSubscribedCalendarHeaders extends $tea.Model {
|
|
|
19562
19747
|
}
|
|
19563
19748
|
}
|
|
19564
19749
|
|
|
19565
|
-
export class
|
|
19750
|
+
export class GetSpaceDirectoriesShrinkHeaders extends $tea.Model {
|
|
19751
|
+
commonHeaders?: { [key: string]: string };
|
|
19752
|
+
accountContextShrink?: string;
|
|
19753
|
+
static names(): { [key: string]: string } {
|
|
19754
|
+
return {
|
|
19755
|
+
commonHeaders: 'commonHeaders',
|
|
19756
|
+
accountContextShrink: 'AccountContext',
|
|
19757
|
+
};
|
|
19758
|
+
}
|
|
19759
|
+
|
|
19760
|
+
static types(): { [key: string]: any } {
|
|
19761
|
+
return {
|
|
19762
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
19763
|
+
accountContextShrink: 'string',
|
|
19764
|
+
};
|
|
19765
|
+
}
|
|
19766
|
+
|
|
19767
|
+
constructor(map?: { [key: string]: any }) {
|
|
19768
|
+
super(map);
|
|
19769
|
+
}
|
|
19770
|
+
}
|
|
19771
|
+
|
|
19772
|
+
export class GetSpaceDirectoriesRequest extends $tea.Model {
|
|
19773
|
+
/**
|
|
19774
|
+
* @example
|
|
19775
|
+
* asdasd
|
|
19776
|
+
*/
|
|
19777
|
+
dentryId?: string;
|
|
19778
|
+
/**
|
|
19779
|
+
* @remarks
|
|
19780
|
+
* This parameter is required.
|
|
19781
|
+
*
|
|
19782
|
+
* @example
|
|
19783
|
+
* 30
|
|
19784
|
+
*/
|
|
19785
|
+
maxResults?: number;
|
|
19786
|
+
/**
|
|
19787
|
+
* @example
|
|
19788
|
+
* 123123
|
|
19789
|
+
*/
|
|
19790
|
+
nextToken?: string;
|
|
19791
|
+
/**
|
|
19792
|
+
* @remarks
|
|
19793
|
+
* This parameter is required.
|
|
19794
|
+
*
|
|
19795
|
+
* @example
|
|
19796
|
+
* qweqwe
|
|
19797
|
+
*/
|
|
19798
|
+
spaceId?: string;
|
|
19799
|
+
tenantContext?: GetSpaceDirectoriesRequestTenantContext;
|
|
19800
|
+
static names(): { [key: string]: string } {
|
|
19801
|
+
return {
|
|
19802
|
+
dentryId: 'DentryId',
|
|
19803
|
+
maxResults: 'MaxResults',
|
|
19804
|
+
nextToken: 'NextToken',
|
|
19805
|
+
spaceId: 'SpaceId',
|
|
19806
|
+
tenantContext: 'TenantContext',
|
|
19807
|
+
};
|
|
19808
|
+
}
|
|
19809
|
+
|
|
19810
|
+
static types(): { [key: string]: any } {
|
|
19811
|
+
return {
|
|
19812
|
+
dentryId: 'string',
|
|
19813
|
+
maxResults: 'number',
|
|
19814
|
+
nextToken: 'string',
|
|
19815
|
+
spaceId: 'string',
|
|
19816
|
+
tenantContext: GetSpaceDirectoriesRequestTenantContext,
|
|
19817
|
+
};
|
|
19818
|
+
}
|
|
19819
|
+
|
|
19820
|
+
constructor(map?: { [key: string]: any }) {
|
|
19821
|
+
super(map);
|
|
19822
|
+
}
|
|
19823
|
+
}
|
|
19824
|
+
|
|
19825
|
+
export class GetSpaceDirectoriesShrinkRequest extends $tea.Model {
|
|
19826
|
+
/**
|
|
19827
|
+
* @example
|
|
19828
|
+
* asdasd
|
|
19829
|
+
*/
|
|
19830
|
+
dentryId?: string;
|
|
19831
|
+
/**
|
|
19832
|
+
* @remarks
|
|
19833
|
+
* This parameter is required.
|
|
19834
|
+
*
|
|
19835
|
+
* @example
|
|
19836
|
+
* 30
|
|
19837
|
+
*/
|
|
19838
|
+
maxResults?: number;
|
|
19839
|
+
/**
|
|
19840
|
+
* @example
|
|
19841
|
+
* 123123
|
|
19842
|
+
*/
|
|
19843
|
+
nextToken?: string;
|
|
19844
|
+
/**
|
|
19845
|
+
* @remarks
|
|
19846
|
+
* This parameter is required.
|
|
19847
|
+
*
|
|
19848
|
+
* @example
|
|
19849
|
+
* qweqwe
|
|
19850
|
+
*/
|
|
19851
|
+
spaceId?: string;
|
|
19852
|
+
tenantContextShrink?: string;
|
|
19853
|
+
static names(): { [key: string]: string } {
|
|
19854
|
+
return {
|
|
19855
|
+
dentryId: 'DentryId',
|
|
19856
|
+
maxResults: 'MaxResults',
|
|
19857
|
+
nextToken: 'NextToken',
|
|
19858
|
+
spaceId: 'SpaceId',
|
|
19859
|
+
tenantContextShrink: 'TenantContext',
|
|
19860
|
+
};
|
|
19861
|
+
}
|
|
19862
|
+
|
|
19863
|
+
static types(): { [key: string]: any } {
|
|
19864
|
+
return {
|
|
19865
|
+
dentryId: 'string',
|
|
19866
|
+
maxResults: 'number',
|
|
19867
|
+
nextToken: 'string',
|
|
19868
|
+
spaceId: 'string',
|
|
19869
|
+
tenantContextShrink: 'string',
|
|
19870
|
+
};
|
|
19871
|
+
}
|
|
19872
|
+
|
|
19873
|
+
constructor(map?: { [key: string]: any }) {
|
|
19874
|
+
super(map);
|
|
19875
|
+
}
|
|
19876
|
+
}
|
|
19877
|
+
|
|
19878
|
+
export class GetSpaceDirectoriesResponseBody extends $tea.Model {
|
|
19879
|
+
children?: GetSpaceDirectoriesResponseBodyChildren[];
|
|
19880
|
+
/**
|
|
19881
|
+
* @example
|
|
19882
|
+
* true
|
|
19883
|
+
*/
|
|
19884
|
+
hasMore?: boolean;
|
|
19885
|
+
/**
|
|
19886
|
+
* @example
|
|
19887
|
+
* 1296
|
|
19888
|
+
*/
|
|
19889
|
+
nextToken?: string;
|
|
19890
|
+
/**
|
|
19891
|
+
* @remarks
|
|
19892
|
+
* requestId
|
|
19893
|
+
*
|
|
19894
|
+
* @example
|
|
19895
|
+
* 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
|
|
19896
|
+
*/
|
|
19897
|
+
requestId?: string;
|
|
19898
|
+
static names(): { [key: string]: string } {
|
|
19899
|
+
return {
|
|
19900
|
+
children: 'children',
|
|
19901
|
+
hasMore: 'hasMore',
|
|
19902
|
+
nextToken: 'nextToken',
|
|
19903
|
+
requestId: 'requestId',
|
|
19904
|
+
};
|
|
19905
|
+
}
|
|
19906
|
+
|
|
19907
|
+
static types(): { [key: string]: any } {
|
|
19908
|
+
return {
|
|
19909
|
+
children: { 'type': 'array', 'itemType': GetSpaceDirectoriesResponseBodyChildren },
|
|
19910
|
+
hasMore: 'boolean',
|
|
19911
|
+
nextToken: 'string',
|
|
19912
|
+
requestId: 'string',
|
|
19913
|
+
};
|
|
19914
|
+
}
|
|
19915
|
+
|
|
19916
|
+
constructor(map?: { [key: string]: any }) {
|
|
19917
|
+
super(map);
|
|
19918
|
+
}
|
|
19919
|
+
}
|
|
19920
|
+
|
|
19921
|
+
export class GetSpaceDirectoriesResponse extends $tea.Model {
|
|
19922
|
+
headers?: { [key: string]: string };
|
|
19923
|
+
statusCode?: number;
|
|
19924
|
+
body?: GetSpaceDirectoriesResponseBody;
|
|
19925
|
+
static names(): { [key: string]: string } {
|
|
19926
|
+
return {
|
|
19927
|
+
headers: 'headers',
|
|
19928
|
+
statusCode: 'statusCode',
|
|
19929
|
+
body: 'body',
|
|
19930
|
+
};
|
|
19931
|
+
}
|
|
19932
|
+
|
|
19933
|
+
static types(): { [key: string]: any } {
|
|
19934
|
+
return {
|
|
19935
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
19936
|
+
statusCode: 'number',
|
|
19937
|
+
body: GetSpaceDirectoriesResponseBody,
|
|
19938
|
+
};
|
|
19939
|
+
}
|
|
19940
|
+
|
|
19941
|
+
constructor(map?: { [key: string]: any }) {
|
|
19942
|
+
super(map);
|
|
19943
|
+
}
|
|
19944
|
+
}
|
|
19945
|
+
|
|
19946
|
+
export class GetSubscribedCalendarHeaders extends $tea.Model {
|
|
19947
|
+
commonHeaders?: { [key: string]: string };
|
|
19948
|
+
accountContext?: GetSubscribedCalendarHeadersAccountContext;
|
|
19949
|
+
static names(): { [key: string]: string } {
|
|
19950
|
+
return {
|
|
19951
|
+
commonHeaders: 'commonHeaders',
|
|
19952
|
+
accountContext: 'AccountContext',
|
|
19953
|
+
};
|
|
19954
|
+
}
|
|
19955
|
+
|
|
19956
|
+
static types(): { [key: string]: any } {
|
|
19957
|
+
return {
|
|
19958
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
19959
|
+
accountContext: GetSubscribedCalendarHeadersAccountContext,
|
|
19960
|
+
};
|
|
19961
|
+
}
|
|
19962
|
+
|
|
19963
|
+
constructor(map?: { [key: string]: any }) {
|
|
19964
|
+
super(map);
|
|
19965
|
+
}
|
|
19966
|
+
}
|
|
19967
|
+
|
|
19968
|
+
export class GetSubscribedCalendarShrinkHeaders extends $tea.Model {
|
|
19566
19969
|
commonHeaders?: { [key: string]: string };
|
|
19567
19970
|
accountContextShrink?: string;
|
|
19568
19971
|
static names(): { [key: string]: string } {
|
|
@@ -20439,9 +20842,9 @@ export class GetUserResponse extends $tea.Model {
|
|
|
20439
20842
|
}
|
|
20440
20843
|
}
|
|
20441
20844
|
|
|
20442
|
-
export class
|
|
20845
|
+
export class GetUserIdHeaders extends $tea.Model {
|
|
20443
20846
|
commonHeaders?: { [key: string]: string };
|
|
20444
|
-
accountContext?:
|
|
20847
|
+
accountContext?: GetUserIdHeadersAccountContext;
|
|
20445
20848
|
static names(): { [key: string]: string } {
|
|
20446
20849
|
return {
|
|
20447
20850
|
commonHeaders: 'commonHeaders',
|
|
@@ -20452,7 +20855,7 @@ export class GetUserLatestPlanHeaders extends $tea.Model {
|
|
|
20452
20855
|
static types(): { [key: string]: any } {
|
|
20453
20856
|
return {
|
|
20454
20857
|
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
20455
|
-
accountContext:
|
|
20858
|
+
accountContext: GetUserIdHeadersAccountContext,
|
|
20456
20859
|
};
|
|
20457
20860
|
}
|
|
20458
20861
|
|
|
@@ -20461,7 +20864,7 @@ export class GetUserLatestPlanHeaders extends $tea.Model {
|
|
|
20461
20864
|
}
|
|
20462
20865
|
}
|
|
20463
20866
|
|
|
20464
|
-
export class
|
|
20867
|
+
export class GetUserIdShrinkHeaders extends $tea.Model {
|
|
20465
20868
|
commonHeaders?: { [key: string]: string };
|
|
20466
20869
|
accountContextShrink?: string;
|
|
20467
20870
|
static names(): { [key: string]: string } {
|
|
@@ -20483,17 +20886,27 @@ export class GetUserLatestPlanShrinkHeaders extends $tea.Model {
|
|
|
20483
20886
|
}
|
|
20484
20887
|
}
|
|
20485
20888
|
|
|
20486
|
-
export class
|
|
20487
|
-
tenantContext?:
|
|
20889
|
+
export class GetUserIdRequest extends $tea.Model {
|
|
20890
|
+
tenantContext?: GetUserIdRequestTenantContext;
|
|
20891
|
+
/**
|
|
20892
|
+
* @remarks
|
|
20893
|
+
* unionId
|
|
20894
|
+
*
|
|
20895
|
+
* @example
|
|
20896
|
+
* ****iE
|
|
20897
|
+
*/
|
|
20898
|
+
unionId?: string;
|
|
20488
20899
|
static names(): { [key: string]: string } {
|
|
20489
20900
|
return {
|
|
20490
20901
|
tenantContext: 'TenantContext',
|
|
20902
|
+
unionId: 'UnionId',
|
|
20491
20903
|
};
|
|
20492
20904
|
}
|
|
20493
20905
|
|
|
20494
20906
|
static types(): { [key: string]: any } {
|
|
20495
20907
|
return {
|
|
20496
|
-
tenantContext:
|
|
20908
|
+
tenantContext: GetUserIdRequestTenantContext,
|
|
20909
|
+
unionId: 'string',
|
|
20497
20910
|
};
|
|
20498
20911
|
}
|
|
20499
20912
|
|
|
@@ -20502,17 +20915,27 @@ export class GetUserLatestPlanRequest extends $tea.Model {
|
|
|
20502
20915
|
}
|
|
20503
20916
|
}
|
|
20504
20917
|
|
|
20505
|
-
export class
|
|
20918
|
+
export class GetUserIdShrinkRequest extends $tea.Model {
|
|
20506
20919
|
tenantContextShrink?: string;
|
|
20920
|
+
/**
|
|
20921
|
+
* @remarks
|
|
20922
|
+
* unionId
|
|
20923
|
+
*
|
|
20924
|
+
* @example
|
|
20925
|
+
* ****iE
|
|
20926
|
+
*/
|
|
20927
|
+
unionId?: string;
|
|
20507
20928
|
static names(): { [key: string]: string } {
|
|
20508
20929
|
return {
|
|
20509
20930
|
tenantContextShrink: 'TenantContext',
|
|
20931
|
+
unionId: 'UnionId',
|
|
20510
20932
|
};
|
|
20511
20933
|
}
|
|
20512
20934
|
|
|
20513
20935
|
static types(): { [key: string]: any } {
|
|
20514
20936
|
return {
|
|
20515
20937
|
tenantContextShrink: 'string',
|
|
20938
|
+
unionId: 'string',
|
|
20516
20939
|
};
|
|
20517
20940
|
}
|
|
20518
20941
|
|
|
@@ -20521,62 +20944,7 @@ export class GetUserLatestPlanShrinkRequest extends $tea.Model {
|
|
|
20521
20944
|
}
|
|
20522
20945
|
}
|
|
20523
20946
|
|
|
20524
|
-
export class
|
|
20525
|
-
/**
|
|
20526
|
-
* @example
|
|
20527
|
-
* 1
|
|
20528
|
-
*/
|
|
20529
|
-
accountHandleStatus?: number;
|
|
20530
|
-
/**
|
|
20531
|
-
* @example
|
|
20532
|
-
* 2022-02-02
|
|
20533
|
-
*/
|
|
20534
|
-
accountHandleTime?: string;
|
|
20535
|
-
/**
|
|
20536
|
-
* @example
|
|
20537
|
-
* 0
|
|
20538
|
-
*/
|
|
20539
|
-
accountType?: number;
|
|
20540
|
-
/**
|
|
20541
|
-
* @example
|
|
20542
|
-
* 2022-02-05
|
|
20543
|
-
*/
|
|
20544
|
-
agreementFirstSignTime?: string;
|
|
20545
|
-
/**
|
|
20546
|
-
* @example
|
|
20547
|
-
* 2022-02-06
|
|
20548
|
-
*/
|
|
20549
|
-
agreementLastSignTime?: string;
|
|
20550
|
-
/**
|
|
20551
|
-
* @example
|
|
20552
|
-
* 1
|
|
20553
|
-
*/
|
|
20554
|
-
agreementStatus?: number;
|
|
20555
|
-
/**
|
|
20556
|
-
* @example
|
|
20557
|
-
* 2022-02-04
|
|
20558
|
-
*/
|
|
20559
|
-
dataHandleEndTime?: string;
|
|
20560
|
-
/**
|
|
20561
|
-
* @example
|
|
20562
|
-
* 2022-02-03
|
|
20563
|
-
*/
|
|
20564
|
-
dataHandleStartTime?: string;
|
|
20565
|
-
/**
|
|
20566
|
-
* @example
|
|
20567
|
-
* 1
|
|
20568
|
-
*/
|
|
20569
|
-
dataHandleStatus?: number;
|
|
20570
|
-
/**
|
|
20571
|
-
* @example
|
|
20572
|
-
* 1
|
|
20573
|
-
*/
|
|
20574
|
-
exclusivePlan?: number;
|
|
20575
|
-
/**
|
|
20576
|
-
* @example
|
|
20577
|
-
* 1
|
|
20578
|
-
*/
|
|
20579
|
-
newAccountUid?: number;
|
|
20947
|
+
export class GetUserIdResponseBody extends $tea.Model {
|
|
20580
20948
|
/**
|
|
20581
20949
|
* @example
|
|
20582
20950
|
* 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
|
|
@@ -20584,9 +20952,9 @@ export class GetUserLatestPlanResponseBody extends $tea.Model {
|
|
|
20584
20952
|
requestId?: string;
|
|
20585
20953
|
/**
|
|
20586
20954
|
* @example
|
|
20587
|
-
*
|
|
20955
|
+
* 012345
|
|
20588
20956
|
*/
|
|
20589
|
-
|
|
20957
|
+
userId?: string;
|
|
20590
20958
|
/**
|
|
20591
20959
|
* @example
|
|
20592
20960
|
* 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
|
|
@@ -20599,19 +20967,8 @@ export class GetUserLatestPlanResponseBody extends $tea.Model {
|
|
|
20599
20967
|
vendorType?: string;
|
|
20600
20968
|
static names(): { [key: string]: string } {
|
|
20601
20969
|
return {
|
|
20602
|
-
accountHandleStatus: 'accountHandleStatus',
|
|
20603
|
-
accountHandleTime: 'accountHandleTime',
|
|
20604
|
-
accountType: 'accountType',
|
|
20605
|
-
agreementFirstSignTime: 'agreementFirstSignTime',
|
|
20606
|
-
agreementLastSignTime: 'agreementLastSignTime',
|
|
20607
|
-
agreementStatus: 'agreementStatus',
|
|
20608
|
-
dataHandleEndTime: 'dataHandleEndTime',
|
|
20609
|
-
dataHandleStartTime: 'dataHandleStartTime',
|
|
20610
|
-
dataHandleStatus: 'dataHandleStatus',
|
|
20611
|
-
exclusivePlan: 'exclusivePlan',
|
|
20612
|
-
newAccountUid: 'newAccountUid',
|
|
20613
20970
|
requestId: 'requestId',
|
|
20614
|
-
|
|
20971
|
+
userId: 'userId',
|
|
20615
20972
|
vendorRequestId: 'vendorRequestId',
|
|
20616
20973
|
vendorType: 'vendorType',
|
|
20617
20974
|
};
|
|
@@ -20619,19 +20976,8 @@ export class GetUserLatestPlanResponseBody extends $tea.Model {
|
|
|
20619
20976
|
|
|
20620
20977
|
static types(): { [key: string]: any } {
|
|
20621
20978
|
return {
|
|
20622
|
-
accountHandleStatus: 'number',
|
|
20623
|
-
accountHandleTime: 'string',
|
|
20624
|
-
accountType: 'number',
|
|
20625
|
-
agreementFirstSignTime: 'string',
|
|
20626
|
-
agreementLastSignTime: 'string',
|
|
20627
|
-
agreementStatus: 'number',
|
|
20628
|
-
dataHandleEndTime: 'string',
|
|
20629
|
-
dataHandleStartTime: 'string',
|
|
20630
|
-
dataHandleStatus: 'number',
|
|
20631
|
-
exclusivePlan: 'number',
|
|
20632
|
-
newAccountUid: 'number',
|
|
20633
20979
|
requestId: 'string',
|
|
20634
|
-
|
|
20980
|
+
userId: 'string',
|
|
20635
20981
|
vendorRequestId: 'string',
|
|
20636
20982
|
vendorType: 'string',
|
|
20637
20983
|
};
|
|
@@ -20642,10 +20988,10 @@ export class GetUserLatestPlanResponseBody extends $tea.Model {
|
|
|
20642
20988
|
}
|
|
20643
20989
|
}
|
|
20644
20990
|
|
|
20645
|
-
export class
|
|
20991
|
+
export class GetUserIdResponse extends $tea.Model {
|
|
20646
20992
|
headers?: { [key: string]: string };
|
|
20647
20993
|
statusCode?: number;
|
|
20648
|
-
body?:
|
|
20994
|
+
body?: GetUserIdResponseBody;
|
|
20649
20995
|
static names(): { [key: string]: string } {
|
|
20650
20996
|
return {
|
|
20651
20997
|
headers: 'headers',
|
|
@@ -20658,7 +21004,7 @@ export class GetUserLatestPlanResponse extends $tea.Model {
|
|
|
20658
21004
|
return {
|
|
20659
21005
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
20660
21006
|
statusCode: 'number',
|
|
20661
|
-
body:
|
|
21007
|
+
body: GetUserIdResponseBody,
|
|
20662
21008
|
};
|
|
20663
21009
|
}
|
|
20664
21010
|
|
|
@@ -20667,9 +21013,9 @@ export class GetUserLatestPlanResponse extends $tea.Model {
|
|
|
20667
21013
|
}
|
|
20668
21014
|
}
|
|
20669
21015
|
|
|
20670
|
-
export class
|
|
21016
|
+
export class GetUserIdByOrgIdAndStaffIdHeaders extends $tea.Model {
|
|
20671
21017
|
commonHeaders?: { [key: string]: string };
|
|
20672
|
-
accountContext?:
|
|
21018
|
+
accountContext?: GetUserIdByOrgIdAndStaffIdHeadersAccountContext;
|
|
20673
21019
|
static names(): { [key: string]: string } {
|
|
20674
21020
|
return {
|
|
20675
21021
|
commonHeaders: 'commonHeaders',
|
|
@@ -20680,7 +21026,7 @@ export class GetWorkspaceHeaders extends $tea.Model {
|
|
|
20680
21026
|
static types(): { [key: string]: any } {
|
|
20681
21027
|
return {
|
|
20682
21028
|
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
20683
|
-
accountContext:
|
|
21029
|
+
accountContext: GetUserIdByOrgIdAndStaffIdHeadersAccountContext,
|
|
20684
21030
|
};
|
|
20685
21031
|
}
|
|
20686
21032
|
|
|
@@ -20689,7 +21035,400 @@ export class GetWorkspaceHeaders extends $tea.Model {
|
|
|
20689
21035
|
}
|
|
20690
21036
|
}
|
|
20691
21037
|
|
|
20692
|
-
export class
|
|
21038
|
+
export class GetUserIdByOrgIdAndStaffIdShrinkHeaders extends $tea.Model {
|
|
21039
|
+
commonHeaders?: { [key: string]: string };
|
|
21040
|
+
accountContextShrink?: string;
|
|
21041
|
+
static names(): { [key: string]: string } {
|
|
21042
|
+
return {
|
|
21043
|
+
commonHeaders: 'commonHeaders',
|
|
21044
|
+
accountContextShrink: 'AccountContext',
|
|
21045
|
+
};
|
|
21046
|
+
}
|
|
21047
|
+
|
|
21048
|
+
static types(): { [key: string]: any } {
|
|
21049
|
+
return {
|
|
21050
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
21051
|
+
accountContextShrink: 'string',
|
|
21052
|
+
};
|
|
21053
|
+
}
|
|
21054
|
+
|
|
21055
|
+
constructor(map?: { [key: string]: any }) {
|
|
21056
|
+
super(map);
|
|
21057
|
+
}
|
|
21058
|
+
}
|
|
21059
|
+
|
|
21060
|
+
export class GetUserIdByOrgIdAndStaffIdRequest extends $tea.Model {
|
|
21061
|
+
/**
|
|
21062
|
+
* @example
|
|
21063
|
+
* 123456
|
|
21064
|
+
*/
|
|
21065
|
+
orgId?: number;
|
|
21066
|
+
tenantContext?: GetUserIdByOrgIdAndStaffIdRequestTenantContext;
|
|
21067
|
+
static names(): { [key: string]: string } {
|
|
21068
|
+
return {
|
|
21069
|
+
orgId: 'OrgId',
|
|
21070
|
+
tenantContext: 'TenantContext',
|
|
21071
|
+
};
|
|
21072
|
+
}
|
|
21073
|
+
|
|
21074
|
+
static types(): { [key: string]: any } {
|
|
21075
|
+
return {
|
|
21076
|
+
orgId: 'number',
|
|
21077
|
+
tenantContext: GetUserIdByOrgIdAndStaffIdRequestTenantContext,
|
|
21078
|
+
};
|
|
21079
|
+
}
|
|
21080
|
+
|
|
21081
|
+
constructor(map?: { [key: string]: any }) {
|
|
21082
|
+
super(map);
|
|
21083
|
+
}
|
|
21084
|
+
}
|
|
21085
|
+
|
|
21086
|
+
export class GetUserIdByOrgIdAndStaffIdShrinkRequest extends $tea.Model {
|
|
21087
|
+
/**
|
|
21088
|
+
* @example
|
|
21089
|
+
* 123456
|
|
21090
|
+
*/
|
|
21091
|
+
orgId?: number;
|
|
21092
|
+
tenantContextShrink?: string;
|
|
21093
|
+
static names(): { [key: string]: string } {
|
|
21094
|
+
return {
|
|
21095
|
+
orgId: 'OrgId',
|
|
21096
|
+
tenantContextShrink: 'TenantContext',
|
|
21097
|
+
};
|
|
21098
|
+
}
|
|
21099
|
+
|
|
21100
|
+
static types(): { [key: string]: any } {
|
|
21101
|
+
return {
|
|
21102
|
+
orgId: 'number',
|
|
21103
|
+
tenantContextShrink: 'string',
|
|
21104
|
+
};
|
|
21105
|
+
}
|
|
21106
|
+
|
|
21107
|
+
constructor(map?: { [key: string]: any }) {
|
|
21108
|
+
super(map);
|
|
21109
|
+
}
|
|
21110
|
+
}
|
|
21111
|
+
|
|
21112
|
+
export class GetUserIdByOrgIdAndStaffIdResponseBody extends $tea.Model {
|
|
21113
|
+
/**
|
|
21114
|
+
* @example
|
|
21115
|
+
* 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
|
|
21116
|
+
*/
|
|
21117
|
+
requestId?: string;
|
|
21118
|
+
/**
|
|
21119
|
+
* @example
|
|
21120
|
+
* 01223245436
|
|
21121
|
+
*/
|
|
21122
|
+
userId?: string;
|
|
21123
|
+
/**
|
|
21124
|
+
* @example
|
|
21125
|
+
* 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
|
|
21126
|
+
*/
|
|
21127
|
+
vendorRequestId?: string;
|
|
21128
|
+
/**
|
|
21129
|
+
* @example
|
|
21130
|
+
* dingtalk
|
|
21131
|
+
*/
|
|
21132
|
+
vendorType?: string;
|
|
21133
|
+
static names(): { [key: string]: string } {
|
|
21134
|
+
return {
|
|
21135
|
+
requestId: 'requestId',
|
|
21136
|
+
userId: 'userId',
|
|
21137
|
+
vendorRequestId: 'vendorRequestId',
|
|
21138
|
+
vendorType: 'vendorType',
|
|
21139
|
+
};
|
|
21140
|
+
}
|
|
21141
|
+
|
|
21142
|
+
static types(): { [key: string]: any } {
|
|
21143
|
+
return {
|
|
21144
|
+
requestId: 'string',
|
|
21145
|
+
userId: 'string',
|
|
21146
|
+
vendorRequestId: 'string',
|
|
21147
|
+
vendorType: 'string',
|
|
21148
|
+
};
|
|
21149
|
+
}
|
|
21150
|
+
|
|
21151
|
+
constructor(map?: { [key: string]: any }) {
|
|
21152
|
+
super(map);
|
|
21153
|
+
}
|
|
21154
|
+
}
|
|
21155
|
+
|
|
21156
|
+
export class GetUserIdByOrgIdAndStaffIdResponse extends $tea.Model {
|
|
21157
|
+
headers?: { [key: string]: string };
|
|
21158
|
+
statusCode?: number;
|
|
21159
|
+
body?: GetUserIdByOrgIdAndStaffIdResponseBody;
|
|
21160
|
+
static names(): { [key: string]: string } {
|
|
21161
|
+
return {
|
|
21162
|
+
headers: 'headers',
|
|
21163
|
+
statusCode: 'statusCode',
|
|
21164
|
+
body: 'body',
|
|
21165
|
+
};
|
|
21166
|
+
}
|
|
21167
|
+
|
|
21168
|
+
static types(): { [key: string]: any } {
|
|
21169
|
+
return {
|
|
21170
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
21171
|
+
statusCode: 'number',
|
|
21172
|
+
body: GetUserIdByOrgIdAndStaffIdResponseBody,
|
|
21173
|
+
};
|
|
21174
|
+
}
|
|
21175
|
+
|
|
21176
|
+
constructor(map?: { [key: string]: any }) {
|
|
21177
|
+
super(map);
|
|
21178
|
+
}
|
|
21179
|
+
}
|
|
21180
|
+
|
|
21181
|
+
export class GetUserLatestPlanHeaders extends $tea.Model {
|
|
21182
|
+
commonHeaders?: { [key: string]: string };
|
|
21183
|
+
accountContext?: GetUserLatestPlanHeadersAccountContext;
|
|
21184
|
+
static names(): { [key: string]: string } {
|
|
21185
|
+
return {
|
|
21186
|
+
commonHeaders: 'commonHeaders',
|
|
21187
|
+
accountContext: 'AccountContext',
|
|
21188
|
+
};
|
|
21189
|
+
}
|
|
21190
|
+
|
|
21191
|
+
static types(): { [key: string]: any } {
|
|
21192
|
+
return {
|
|
21193
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
21194
|
+
accountContext: GetUserLatestPlanHeadersAccountContext,
|
|
21195
|
+
};
|
|
21196
|
+
}
|
|
21197
|
+
|
|
21198
|
+
constructor(map?: { [key: string]: any }) {
|
|
21199
|
+
super(map);
|
|
21200
|
+
}
|
|
21201
|
+
}
|
|
21202
|
+
|
|
21203
|
+
export class GetUserLatestPlanShrinkHeaders extends $tea.Model {
|
|
21204
|
+
commonHeaders?: { [key: string]: string };
|
|
21205
|
+
accountContextShrink?: string;
|
|
21206
|
+
static names(): { [key: string]: string } {
|
|
21207
|
+
return {
|
|
21208
|
+
commonHeaders: 'commonHeaders',
|
|
21209
|
+
accountContextShrink: 'AccountContext',
|
|
21210
|
+
};
|
|
21211
|
+
}
|
|
21212
|
+
|
|
21213
|
+
static types(): { [key: string]: any } {
|
|
21214
|
+
return {
|
|
21215
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
21216
|
+
accountContextShrink: 'string',
|
|
21217
|
+
};
|
|
21218
|
+
}
|
|
21219
|
+
|
|
21220
|
+
constructor(map?: { [key: string]: any }) {
|
|
21221
|
+
super(map);
|
|
21222
|
+
}
|
|
21223
|
+
}
|
|
21224
|
+
|
|
21225
|
+
export class GetUserLatestPlanRequest extends $tea.Model {
|
|
21226
|
+
tenantContext?: GetUserLatestPlanRequestTenantContext;
|
|
21227
|
+
static names(): { [key: string]: string } {
|
|
21228
|
+
return {
|
|
21229
|
+
tenantContext: 'TenantContext',
|
|
21230
|
+
};
|
|
21231
|
+
}
|
|
21232
|
+
|
|
21233
|
+
static types(): { [key: string]: any } {
|
|
21234
|
+
return {
|
|
21235
|
+
tenantContext: GetUserLatestPlanRequestTenantContext,
|
|
21236
|
+
};
|
|
21237
|
+
}
|
|
21238
|
+
|
|
21239
|
+
constructor(map?: { [key: string]: any }) {
|
|
21240
|
+
super(map);
|
|
21241
|
+
}
|
|
21242
|
+
}
|
|
21243
|
+
|
|
21244
|
+
export class GetUserLatestPlanShrinkRequest extends $tea.Model {
|
|
21245
|
+
tenantContextShrink?: string;
|
|
21246
|
+
static names(): { [key: string]: string } {
|
|
21247
|
+
return {
|
|
21248
|
+
tenantContextShrink: 'TenantContext',
|
|
21249
|
+
};
|
|
21250
|
+
}
|
|
21251
|
+
|
|
21252
|
+
static types(): { [key: string]: any } {
|
|
21253
|
+
return {
|
|
21254
|
+
tenantContextShrink: 'string',
|
|
21255
|
+
};
|
|
21256
|
+
}
|
|
21257
|
+
|
|
21258
|
+
constructor(map?: { [key: string]: any }) {
|
|
21259
|
+
super(map);
|
|
21260
|
+
}
|
|
21261
|
+
}
|
|
21262
|
+
|
|
21263
|
+
export class GetUserLatestPlanResponseBody extends $tea.Model {
|
|
21264
|
+
/**
|
|
21265
|
+
* @example
|
|
21266
|
+
* 1
|
|
21267
|
+
*/
|
|
21268
|
+
accountHandleStatus?: number;
|
|
21269
|
+
/**
|
|
21270
|
+
* @example
|
|
21271
|
+
* 2022-02-02
|
|
21272
|
+
*/
|
|
21273
|
+
accountHandleTime?: string;
|
|
21274
|
+
/**
|
|
21275
|
+
* @example
|
|
21276
|
+
* 0
|
|
21277
|
+
*/
|
|
21278
|
+
accountType?: number;
|
|
21279
|
+
/**
|
|
21280
|
+
* @example
|
|
21281
|
+
* 2022-02-05
|
|
21282
|
+
*/
|
|
21283
|
+
agreementFirstSignTime?: string;
|
|
21284
|
+
/**
|
|
21285
|
+
* @example
|
|
21286
|
+
* 2022-02-06
|
|
21287
|
+
*/
|
|
21288
|
+
agreementLastSignTime?: string;
|
|
21289
|
+
/**
|
|
21290
|
+
* @example
|
|
21291
|
+
* 1
|
|
21292
|
+
*/
|
|
21293
|
+
agreementStatus?: number;
|
|
21294
|
+
/**
|
|
21295
|
+
* @example
|
|
21296
|
+
* 2022-02-04
|
|
21297
|
+
*/
|
|
21298
|
+
dataHandleEndTime?: string;
|
|
21299
|
+
/**
|
|
21300
|
+
* @example
|
|
21301
|
+
* 2022-02-03
|
|
21302
|
+
*/
|
|
21303
|
+
dataHandleStartTime?: string;
|
|
21304
|
+
/**
|
|
21305
|
+
* @example
|
|
21306
|
+
* 1
|
|
21307
|
+
*/
|
|
21308
|
+
dataHandleStatus?: number;
|
|
21309
|
+
/**
|
|
21310
|
+
* @example
|
|
21311
|
+
* 1
|
|
21312
|
+
*/
|
|
21313
|
+
exclusivePlan?: number;
|
|
21314
|
+
/**
|
|
21315
|
+
* @example
|
|
21316
|
+
* 1
|
|
21317
|
+
*/
|
|
21318
|
+
newAccountUid?: number;
|
|
21319
|
+
/**
|
|
21320
|
+
* @example
|
|
21321
|
+
* 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
|
|
21322
|
+
*/
|
|
21323
|
+
requestId?: string;
|
|
21324
|
+
/**
|
|
21325
|
+
* @example
|
|
21326
|
+
* 0
|
|
21327
|
+
*/
|
|
21328
|
+
status?: number;
|
|
21329
|
+
/**
|
|
21330
|
+
* @example
|
|
21331
|
+
* 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
|
|
21332
|
+
*/
|
|
21333
|
+
vendorRequestId?: string;
|
|
21334
|
+
/**
|
|
21335
|
+
* @example
|
|
21336
|
+
* dingtalk
|
|
21337
|
+
*/
|
|
21338
|
+
vendorType?: string;
|
|
21339
|
+
static names(): { [key: string]: string } {
|
|
21340
|
+
return {
|
|
21341
|
+
accountHandleStatus: 'accountHandleStatus',
|
|
21342
|
+
accountHandleTime: 'accountHandleTime',
|
|
21343
|
+
accountType: 'accountType',
|
|
21344
|
+
agreementFirstSignTime: 'agreementFirstSignTime',
|
|
21345
|
+
agreementLastSignTime: 'agreementLastSignTime',
|
|
21346
|
+
agreementStatus: 'agreementStatus',
|
|
21347
|
+
dataHandleEndTime: 'dataHandleEndTime',
|
|
21348
|
+
dataHandleStartTime: 'dataHandleStartTime',
|
|
21349
|
+
dataHandleStatus: 'dataHandleStatus',
|
|
21350
|
+
exclusivePlan: 'exclusivePlan',
|
|
21351
|
+
newAccountUid: 'newAccountUid',
|
|
21352
|
+
requestId: 'requestId',
|
|
21353
|
+
status: 'status',
|
|
21354
|
+
vendorRequestId: 'vendorRequestId',
|
|
21355
|
+
vendorType: 'vendorType',
|
|
21356
|
+
};
|
|
21357
|
+
}
|
|
21358
|
+
|
|
21359
|
+
static types(): { [key: string]: any } {
|
|
21360
|
+
return {
|
|
21361
|
+
accountHandleStatus: 'number',
|
|
21362
|
+
accountHandleTime: 'string',
|
|
21363
|
+
accountType: 'number',
|
|
21364
|
+
agreementFirstSignTime: 'string',
|
|
21365
|
+
agreementLastSignTime: 'string',
|
|
21366
|
+
agreementStatus: 'number',
|
|
21367
|
+
dataHandleEndTime: 'string',
|
|
21368
|
+
dataHandleStartTime: 'string',
|
|
21369
|
+
dataHandleStatus: 'number',
|
|
21370
|
+
exclusivePlan: 'number',
|
|
21371
|
+
newAccountUid: 'number',
|
|
21372
|
+
requestId: 'string',
|
|
21373
|
+
status: 'number',
|
|
21374
|
+
vendorRequestId: 'string',
|
|
21375
|
+
vendorType: 'string',
|
|
21376
|
+
};
|
|
21377
|
+
}
|
|
21378
|
+
|
|
21379
|
+
constructor(map?: { [key: string]: any }) {
|
|
21380
|
+
super(map);
|
|
21381
|
+
}
|
|
21382
|
+
}
|
|
21383
|
+
|
|
21384
|
+
export class GetUserLatestPlanResponse extends $tea.Model {
|
|
21385
|
+
headers?: { [key: string]: string };
|
|
21386
|
+
statusCode?: number;
|
|
21387
|
+
body?: GetUserLatestPlanResponseBody;
|
|
21388
|
+
static names(): { [key: string]: string } {
|
|
21389
|
+
return {
|
|
21390
|
+
headers: 'headers',
|
|
21391
|
+
statusCode: 'statusCode',
|
|
21392
|
+
body: 'body',
|
|
21393
|
+
};
|
|
21394
|
+
}
|
|
21395
|
+
|
|
21396
|
+
static types(): { [key: string]: any } {
|
|
21397
|
+
return {
|
|
21398
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
21399
|
+
statusCode: 'number',
|
|
21400
|
+
body: GetUserLatestPlanResponseBody,
|
|
21401
|
+
};
|
|
21402
|
+
}
|
|
21403
|
+
|
|
21404
|
+
constructor(map?: { [key: string]: any }) {
|
|
21405
|
+
super(map);
|
|
21406
|
+
}
|
|
21407
|
+
}
|
|
21408
|
+
|
|
21409
|
+
export class GetWorkspaceHeaders extends $tea.Model {
|
|
21410
|
+
commonHeaders?: { [key: string]: string };
|
|
21411
|
+
accountContext?: GetWorkspaceHeadersAccountContext;
|
|
21412
|
+
static names(): { [key: string]: string } {
|
|
21413
|
+
return {
|
|
21414
|
+
commonHeaders: 'commonHeaders',
|
|
21415
|
+
accountContext: 'AccountContext',
|
|
21416
|
+
};
|
|
21417
|
+
}
|
|
21418
|
+
|
|
21419
|
+
static types(): { [key: string]: any } {
|
|
21420
|
+
return {
|
|
21421
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
21422
|
+
accountContext: GetWorkspaceHeadersAccountContext,
|
|
21423
|
+
};
|
|
21424
|
+
}
|
|
21425
|
+
|
|
21426
|
+
constructor(map?: { [key: string]: any }) {
|
|
21427
|
+
super(map);
|
|
21428
|
+
}
|
|
21429
|
+
}
|
|
21430
|
+
|
|
21431
|
+
export class GetWorkspaceShrinkHeaders extends $tea.Model {
|
|
20693
21432
|
commonHeaders?: { [key: string]: string };
|
|
20694
21433
|
accountContextShrink?: string;
|
|
20695
21434
|
static names(): { [key: string]: string } {
|
|
@@ -24521,6 +25260,239 @@ export class ListTeamsResponse extends $tea.Model {
|
|
|
24521
25260
|
}
|
|
24522
25261
|
}
|
|
24523
25262
|
|
|
25263
|
+
export class ListTemplateHeaders extends $tea.Model {
|
|
25264
|
+
commonHeaders?: { [key: string]: string };
|
|
25265
|
+
accountContext?: ListTemplateHeadersAccountContext;
|
|
25266
|
+
static names(): { [key: string]: string } {
|
|
25267
|
+
return {
|
|
25268
|
+
commonHeaders: 'commonHeaders',
|
|
25269
|
+
accountContext: 'AccountContext',
|
|
25270
|
+
};
|
|
25271
|
+
}
|
|
25272
|
+
|
|
25273
|
+
static types(): { [key: string]: any } {
|
|
25274
|
+
return {
|
|
25275
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
25276
|
+
accountContext: ListTemplateHeadersAccountContext,
|
|
25277
|
+
};
|
|
25278
|
+
}
|
|
25279
|
+
|
|
25280
|
+
constructor(map?: { [key: string]: any }) {
|
|
25281
|
+
super(map);
|
|
25282
|
+
}
|
|
25283
|
+
}
|
|
25284
|
+
|
|
25285
|
+
export class ListTemplateShrinkHeaders extends $tea.Model {
|
|
25286
|
+
commonHeaders?: { [key: string]: string };
|
|
25287
|
+
accountContextShrink?: string;
|
|
25288
|
+
static names(): { [key: string]: string } {
|
|
25289
|
+
return {
|
|
25290
|
+
commonHeaders: 'commonHeaders',
|
|
25291
|
+
accountContextShrink: 'AccountContext',
|
|
25292
|
+
};
|
|
25293
|
+
}
|
|
25294
|
+
|
|
25295
|
+
static types(): { [key: string]: any } {
|
|
25296
|
+
return {
|
|
25297
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
25298
|
+
accountContextShrink: 'string',
|
|
25299
|
+
};
|
|
25300
|
+
}
|
|
25301
|
+
|
|
25302
|
+
constructor(map?: { [key: string]: any }) {
|
|
25303
|
+
super(map);
|
|
25304
|
+
}
|
|
25305
|
+
}
|
|
25306
|
+
|
|
25307
|
+
export class ListTemplateRequest extends $tea.Model {
|
|
25308
|
+
/**
|
|
25309
|
+
* @remarks
|
|
25310
|
+
* This parameter is required.
|
|
25311
|
+
*
|
|
25312
|
+
* @example
|
|
25313
|
+
* 20
|
|
25314
|
+
*/
|
|
25315
|
+
maxResults?: number;
|
|
25316
|
+
/**
|
|
25317
|
+
* @example
|
|
25318
|
+
* zzz
|
|
25319
|
+
*/
|
|
25320
|
+
nextToken?: string;
|
|
25321
|
+
/**
|
|
25322
|
+
* @remarks
|
|
25323
|
+
* This parameter is required.
|
|
25324
|
+
*
|
|
25325
|
+
* @example
|
|
25326
|
+
* public_template
|
|
25327
|
+
*/
|
|
25328
|
+
templateType?: string;
|
|
25329
|
+
tenantContext?: ListTemplateRequestTenantContext;
|
|
25330
|
+
/**
|
|
25331
|
+
* @example
|
|
25332
|
+
* workspaceId
|
|
25333
|
+
*/
|
|
25334
|
+
workspaceId?: string;
|
|
25335
|
+
static names(): { [key: string]: string } {
|
|
25336
|
+
return {
|
|
25337
|
+
maxResults: 'MaxResults',
|
|
25338
|
+
nextToken: 'NextToken',
|
|
25339
|
+
templateType: 'TemplateType',
|
|
25340
|
+
tenantContext: 'TenantContext',
|
|
25341
|
+
workspaceId: 'WorkspaceId',
|
|
25342
|
+
};
|
|
25343
|
+
}
|
|
25344
|
+
|
|
25345
|
+
static types(): { [key: string]: any } {
|
|
25346
|
+
return {
|
|
25347
|
+
maxResults: 'number',
|
|
25348
|
+
nextToken: 'string',
|
|
25349
|
+
templateType: 'string',
|
|
25350
|
+
tenantContext: ListTemplateRequestTenantContext,
|
|
25351
|
+
workspaceId: 'string',
|
|
25352
|
+
};
|
|
25353
|
+
}
|
|
25354
|
+
|
|
25355
|
+
constructor(map?: { [key: string]: any }) {
|
|
25356
|
+
super(map);
|
|
25357
|
+
}
|
|
25358
|
+
}
|
|
25359
|
+
|
|
25360
|
+
export class ListTemplateShrinkRequest extends $tea.Model {
|
|
25361
|
+
/**
|
|
25362
|
+
* @remarks
|
|
25363
|
+
* This parameter is required.
|
|
25364
|
+
*
|
|
25365
|
+
* @example
|
|
25366
|
+
* 20
|
|
25367
|
+
*/
|
|
25368
|
+
maxResults?: number;
|
|
25369
|
+
/**
|
|
25370
|
+
* @example
|
|
25371
|
+
* zzz
|
|
25372
|
+
*/
|
|
25373
|
+
nextToken?: string;
|
|
25374
|
+
/**
|
|
25375
|
+
* @remarks
|
|
25376
|
+
* This parameter is required.
|
|
25377
|
+
*
|
|
25378
|
+
* @example
|
|
25379
|
+
* public_template
|
|
25380
|
+
*/
|
|
25381
|
+
templateType?: string;
|
|
25382
|
+
tenantContextShrink?: string;
|
|
25383
|
+
/**
|
|
25384
|
+
* @example
|
|
25385
|
+
* workspaceId
|
|
25386
|
+
*/
|
|
25387
|
+
workspaceId?: string;
|
|
25388
|
+
static names(): { [key: string]: string } {
|
|
25389
|
+
return {
|
|
25390
|
+
maxResults: 'MaxResults',
|
|
25391
|
+
nextToken: 'NextToken',
|
|
25392
|
+
templateType: 'TemplateType',
|
|
25393
|
+
tenantContextShrink: 'TenantContext',
|
|
25394
|
+
workspaceId: 'WorkspaceId',
|
|
25395
|
+
};
|
|
25396
|
+
}
|
|
25397
|
+
|
|
25398
|
+
static types(): { [key: string]: any } {
|
|
25399
|
+
return {
|
|
25400
|
+
maxResults: 'number',
|
|
25401
|
+
nextToken: 'string',
|
|
25402
|
+
templateType: 'string',
|
|
25403
|
+
tenantContextShrink: 'string',
|
|
25404
|
+
workspaceId: 'string',
|
|
25405
|
+
};
|
|
25406
|
+
}
|
|
25407
|
+
|
|
25408
|
+
constructor(map?: { [key: string]: any }) {
|
|
25409
|
+
super(map);
|
|
25410
|
+
}
|
|
25411
|
+
}
|
|
25412
|
+
|
|
25413
|
+
export class ListTemplateResponseBody extends $tea.Model {
|
|
25414
|
+
/**
|
|
25415
|
+
* @example
|
|
25416
|
+
* true
|
|
25417
|
+
*/
|
|
25418
|
+
hasMore?: boolean;
|
|
25419
|
+
/**
|
|
25420
|
+
* @example
|
|
25421
|
+
* next_token
|
|
25422
|
+
*/
|
|
25423
|
+
nextToken?: string;
|
|
25424
|
+
/**
|
|
25425
|
+
* @example
|
|
25426
|
+
* 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
|
|
25427
|
+
*/
|
|
25428
|
+
requestId?: string;
|
|
25429
|
+
/**
|
|
25430
|
+
* @example
|
|
25431
|
+
* []
|
|
25432
|
+
*/
|
|
25433
|
+
templateList?: ListTemplateResponseBodyTemplateList[];
|
|
25434
|
+
/**
|
|
25435
|
+
* @example
|
|
25436
|
+
* 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
|
|
25437
|
+
*/
|
|
25438
|
+
vendorRequestId?: string;
|
|
25439
|
+
/**
|
|
25440
|
+
* @example
|
|
25441
|
+
* dingtalk
|
|
25442
|
+
*/
|
|
25443
|
+
vendorType?: string;
|
|
25444
|
+
static names(): { [key: string]: string } {
|
|
25445
|
+
return {
|
|
25446
|
+
hasMore: 'hasMore',
|
|
25447
|
+
nextToken: 'nextToken',
|
|
25448
|
+
requestId: 'requestId',
|
|
25449
|
+
templateList: 'templateList',
|
|
25450
|
+
vendorRequestId: 'vendorRequestId',
|
|
25451
|
+
vendorType: 'vendorType',
|
|
25452
|
+
};
|
|
25453
|
+
}
|
|
25454
|
+
|
|
25455
|
+
static types(): { [key: string]: any } {
|
|
25456
|
+
return {
|
|
25457
|
+
hasMore: 'boolean',
|
|
25458
|
+
nextToken: 'string',
|
|
25459
|
+
requestId: 'string',
|
|
25460
|
+
templateList: { 'type': 'array', 'itemType': ListTemplateResponseBodyTemplateList },
|
|
25461
|
+
vendorRequestId: 'string',
|
|
25462
|
+
vendorType: 'string',
|
|
25463
|
+
};
|
|
25464
|
+
}
|
|
25465
|
+
|
|
25466
|
+
constructor(map?: { [key: string]: any }) {
|
|
25467
|
+
super(map);
|
|
25468
|
+
}
|
|
25469
|
+
}
|
|
25470
|
+
|
|
25471
|
+
export class ListTemplateResponse extends $tea.Model {
|
|
25472
|
+
headers?: { [key: string]: string };
|
|
25473
|
+
statusCode?: number;
|
|
25474
|
+
body?: ListTemplateResponseBody;
|
|
25475
|
+
static names(): { [key: string]: string } {
|
|
25476
|
+
return {
|
|
25477
|
+
headers: 'headers',
|
|
25478
|
+
statusCode: 'statusCode',
|
|
25479
|
+
body: 'body',
|
|
25480
|
+
};
|
|
25481
|
+
}
|
|
25482
|
+
|
|
25483
|
+
static types(): { [key: string]: any } {
|
|
25484
|
+
return {
|
|
25485
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
25486
|
+
statusCode: 'number',
|
|
25487
|
+
body: ListTemplateResponseBody,
|
|
25488
|
+
};
|
|
25489
|
+
}
|
|
25490
|
+
|
|
25491
|
+
constructor(map?: { [key: string]: any }) {
|
|
25492
|
+
super(map);
|
|
25493
|
+
}
|
|
25494
|
+
}
|
|
25495
|
+
|
|
24524
25496
|
export class ListWorkspacesHeaders extends $tea.Model {
|
|
24525
25497
|
commonHeaders?: { [key: string]: string };
|
|
24526
25498
|
accountContext?: ListWorkspacesHeadersAccountContext;
|
|
@@ -24788,6 +25760,7 @@ export class PatchEventRequest extends $tea.Model {
|
|
|
24788
25760
|
* primary
|
|
24789
25761
|
*/
|
|
24790
25762
|
calendarId?: string;
|
|
25763
|
+
cardInstances?: PatchEventRequestCardInstances[];
|
|
24791
25764
|
description?: string;
|
|
24792
25765
|
end?: PatchEventRequestEnd;
|
|
24793
25766
|
/**
|
|
@@ -24813,6 +25786,7 @@ export class PatchEventRequest extends $tea.Model {
|
|
|
24813
25786
|
return {
|
|
24814
25787
|
attendees: 'Attendees',
|
|
24815
25788
|
calendarId: 'CalendarId',
|
|
25789
|
+
cardInstances: 'CardInstances',
|
|
24816
25790
|
description: 'Description',
|
|
24817
25791
|
end: 'End',
|
|
24818
25792
|
eventId: 'EventId',
|
|
@@ -24830,6 +25804,7 @@ export class PatchEventRequest extends $tea.Model {
|
|
|
24830
25804
|
return {
|
|
24831
25805
|
attendees: { 'type': 'array', 'itemType': PatchEventRequestAttendees },
|
|
24832
25806
|
calendarId: 'string',
|
|
25807
|
+
cardInstances: { 'type': 'array', 'itemType': PatchEventRequestCardInstances },
|
|
24833
25808
|
description: 'string',
|
|
24834
25809
|
end: PatchEventRequestEnd,
|
|
24835
25810
|
eventId: 'string',
|
|
@@ -24858,6 +25833,7 @@ export class PatchEventShrinkRequest extends $tea.Model {
|
|
|
24858
25833
|
* primary
|
|
24859
25834
|
*/
|
|
24860
25835
|
calendarId?: string;
|
|
25836
|
+
cardInstancesShrink?: string;
|
|
24861
25837
|
description?: string;
|
|
24862
25838
|
endShrink?: string;
|
|
24863
25839
|
/**
|
|
@@ -24883,6 +25859,7 @@ export class PatchEventShrinkRequest extends $tea.Model {
|
|
|
24883
25859
|
return {
|
|
24884
25860
|
attendeesShrink: 'Attendees',
|
|
24885
25861
|
calendarId: 'CalendarId',
|
|
25862
|
+
cardInstancesShrink: 'CardInstances',
|
|
24886
25863
|
description: 'Description',
|
|
24887
25864
|
endShrink: 'End',
|
|
24888
25865
|
eventId: 'EventId',
|
|
@@ -24900,6 +25877,7 @@ export class PatchEventShrinkRequest extends $tea.Model {
|
|
|
24900
25877
|
return {
|
|
24901
25878
|
attendeesShrink: 'string',
|
|
24902
25879
|
calendarId: 'string',
|
|
25880
|
+
cardInstancesShrink: 'string',
|
|
24903
25881
|
description: 'string',
|
|
24904
25882
|
endShrink: 'string',
|
|
24905
25883
|
eventId: 'string',
|
|
@@ -28470,6 +29448,193 @@ export class QueryOrgTodoTasksResponse extends $tea.Model {
|
|
|
28470
29448
|
}
|
|
28471
29449
|
}
|
|
28472
29450
|
|
|
29451
|
+
export class QueryRecordMinutesUrlHeaders extends $tea.Model {
|
|
29452
|
+
commonHeaders?: { [key: string]: string };
|
|
29453
|
+
accountContext?: QueryRecordMinutesUrlHeadersAccountContext;
|
|
29454
|
+
static names(): { [key: string]: string } {
|
|
29455
|
+
return {
|
|
29456
|
+
commonHeaders: 'commonHeaders',
|
|
29457
|
+
accountContext: 'AccountContext',
|
|
29458
|
+
};
|
|
29459
|
+
}
|
|
29460
|
+
|
|
29461
|
+
static types(): { [key: string]: any } {
|
|
29462
|
+
return {
|
|
29463
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
29464
|
+
accountContext: QueryRecordMinutesUrlHeadersAccountContext,
|
|
29465
|
+
};
|
|
29466
|
+
}
|
|
29467
|
+
|
|
29468
|
+
constructor(map?: { [key: string]: any }) {
|
|
29469
|
+
super(map);
|
|
29470
|
+
}
|
|
29471
|
+
}
|
|
29472
|
+
|
|
29473
|
+
export class QueryRecordMinutesUrlShrinkHeaders extends $tea.Model {
|
|
29474
|
+
commonHeaders?: { [key: string]: string };
|
|
29475
|
+
accountContextShrink?: string;
|
|
29476
|
+
static names(): { [key: string]: string } {
|
|
29477
|
+
return {
|
|
29478
|
+
commonHeaders: 'commonHeaders',
|
|
29479
|
+
accountContextShrink: 'AccountContext',
|
|
29480
|
+
};
|
|
29481
|
+
}
|
|
29482
|
+
|
|
29483
|
+
static types(): { [key: string]: any } {
|
|
29484
|
+
return {
|
|
29485
|
+
commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
29486
|
+
accountContextShrink: 'string',
|
|
29487
|
+
};
|
|
29488
|
+
}
|
|
29489
|
+
|
|
29490
|
+
constructor(map?: { [key: string]: any }) {
|
|
29491
|
+
super(map);
|
|
29492
|
+
}
|
|
29493
|
+
}
|
|
29494
|
+
|
|
29495
|
+
export class QueryRecordMinutesUrlRequest extends $tea.Model {
|
|
29496
|
+
/**
|
|
29497
|
+
* @remarks
|
|
29498
|
+
* This parameter is required.
|
|
29499
|
+
*
|
|
29500
|
+
* @example
|
|
29501
|
+
* minutes
|
|
29502
|
+
*/
|
|
29503
|
+
bizType?: string;
|
|
29504
|
+
/**
|
|
29505
|
+
* @remarks
|
|
29506
|
+
* This parameter is required.
|
|
29507
|
+
*
|
|
29508
|
+
* @example
|
|
29509
|
+
* 1dddwrqrq
|
|
29510
|
+
*/
|
|
29511
|
+
conferenceId?: string;
|
|
29512
|
+
tenantContext?: QueryRecordMinutesUrlRequestTenantContext;
|
|
29513
|
+
static names(): { [key: string]: string } {
|
|
29514
|
+
return {
|
|
29515
|
+
bizType: 'BizType',
|
|
29516
|
+
conferenceId: 'ConferenceId',
|
|
29517
|
+
tenantContext: 'TenantContext',
|
|
29518
|
+
};
|
|
29519
|
+
}
|
|
29520
|
+
|
|
29521
|
+
static types(): { [key: string]: any } {
|
|
29522
|
+
return {
|
|
29523
|
+
bizType: 'string',
|
|
29524
|
+
conferenceId: 'string',
|
|
29525
|
+
tenantContext: QueryRecordMinutesUrlRequestTenantContext,
|
|
29526
|
+
};
|
|
29527
|
+
}
|
|
29528
|
+
|
|
29529
|
+
constructor(map?: { [key: string]: any }) {
|
|
29530
|
+
super(map);
|
|
29531
|
+
}
|
|
29532
|
+
}
|
|
29533
|
+
|
|
29534
|
+
export class QueryRecordMinutesUrlShrinkRequest extends $tea.Model {
|
|
29535
|
+
/**
|
|
29536
|
+
* @remarks
|
|
29537
|
+
* This parameter is required.
|
|
29538
|
+
*
|
|
29539
|
+
* @example
|
|
29540
|
+
* minutes
|
|
29541
|
+
*/
|
|
29542
|
+
bizType?: string;
|
|
29543
|
+
/**
|
|
29544
|
+
* @remarks
|
|
29545
|
+
* This parameter is required.
|
|
29546
|
+
*
|
|
29547
|
+
* @example
|
|
29548
|
+
* 1dddwrqrq
|
|
29549
|
+
*/
|
|
29550
|
+
conferenceId?: string;
|
|
29551
|
+
tenantContextShrink?: string;
|
|
29552
|
+
static names(): { [key: string]: string } {
|
|
29553
|
+
return {
|
|
29554
|
+
bizType: 'BizType',
|
|
29555
|
+
conferenceId: 'ConferenceId',
|
|
29556
|
+
tenantContextShrink: 'TenantContext',
|
|
29557
|
+
};
|
|
29558
|
+
}
|
|
29559
|
+
|
|
29560
|
+
static types(): { [key: string]: any } {
|
|
29561
|
+
return {
|
|
29562
|
+
bizType: 'string',
|
|
29563
|
+
conferenceId: 'string',
|
|
29564
|
+
tenantContextShrink: 'string',
|
|
29565
|
+
};
|
|
29566
|
+
}
|
|
29567
|
+
|
|
29568
|
+
constructor(map?: { [key: string]: any }) {
|
|
29569
|
+
super(map);
|
|
29570
|
+
}
|
|
29571
|
+
}
|
|
29572
|
+
|
|
29573
|
+
export class QueryRecordMinutesUrlResponseBody extends $tea.Model {
|
|
29574
|
+
recordMinutesUrls?: QueryRecordMinutesUrlResponseBodyRecordMinutesUrls[];
|
|
29575
|
+
/**
|
|
29576
|
+
* @example
|
|
29577
|
+
* 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
|
|
29578
|
+
*/
|
|
29579
|
+
requestId?: string;
|
|
29580
|
+
/**
|
|
29581
|
+
* @example
|
|
29582
|
+
* 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
|
|
29583
|
+
*/
|
|
29584
|
+
vendorRequestId?: string;
|
|
29585
|
+
/**
|
|
29586
|
+
* @example
|
|
29587
|
+
* dingtalk
|
|
29588
|
+
*/
|
|
29589
|
+
vendorType?: string;
|
|
29590
|
+
static names(): { [key: string]: string } {
|
|
29591
|
+
return {
|
|
29592
|
+
recordMinutesUrls: 'recordMinutesUrls',
|
|
29593
|
+
requestId: 'requestId',
|
|
29594
|
+
vendorRequestId: 'vendorRequestId',
|
|
29595
|
+
vendorType: 'vendorType',
|
|
29596
|
+
};
|
|
29597
|
+
}
|
|
29598
|
+
|
|
29599
|
+
static types(): { [key: string]: any } {
|
|
29600
|
+
return {
|
|
29601
|
+
recordMinutesUrls: { 'type': 'array', 'itemType': QueryRecordMinutesUrlResponseBodyRecordMinutesUrls },
|
|
29602
|
+
requestId: 'string',
|
|
29603
|
+
vendorRequestId: 'string',
|
|
29604
|
+
vendorType: 'string',
|
|
29605
|
+
};
|
|
29606
|
+
}
|
|
29607
|
+
|
|
29608
|
+
constructor(map?: { [key: string]: any }) {
|
|
29609
|
+
super(map);
|
|
29610
|
+
}
|
|
29611
|
+
}
|
|
29612
|
+
|
|
29613
|
+
export class QueryRecordMinutesUrlResponse extends $tea.Model {
|
|
29614
|
+
headers?: { [key: string]: string };
|
|
29615
|
+
statusCode?: number;
|
|
29616
|
+
body?: QueryRecordMinutesUrlResponseBody;
|
|
29617
|
+
static names(): { [key: string]: string } {
|
|
29618
|
+
return {
|
|
29619
|
+
headers: 'headers',
|
|
29620
|
+
statusCode: 'statusCode',
|
|
29621
|
+
body: 'body',
|
|
29622
|
+
};
|
|
29623
|
+
}
|
|
29624
|
+
|
|
29625
|
+
static types(): { [key: string]: any } {
|
|
29626
|
+
return {
|
|
29627
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
29628
|
+
statusCode: 'number',
|
|
29629
|
+
body: QueryRecordMinutesUrlResponseBody,
|
|
29630
|
+
};
|
|
29631
|
+
}
|
|
29632
|
+
|
|
29633
|
+
constructor(map?: { [key: string]: any }) {
|
|
29634
|
+
super(map);
|
|
29635
|
+
}
|
|
29636
|
+
}
|
|
29637
|
+
|
|
28473
29638
|
export class QueryReportDetailHeaders extends $tea.Model {
|
|
28474
29639
|
commonHeaders?: { [key: string]: string };
|
|
28475
29640
|
accountContext?: QueryReportDetailHeadersAccountContext;
|
|
@@ -39226,6 +40391,55 @@ export class AddMeetingRoomsRequestMeetingRoomsToAdd extends $tea.Model {
|
|
|
39226
40391
|
}
|
|
39227
40392
|
}
|
|
39228
40393
|
|
|
40394
|
+
export class AddRecordPermissionHeadersAccountContext extends $tea.Model {
|
|
40395
|
+
/**
|
|
40396
|
+
* @remarks
|
|
40397
|
+
* This parameter is required.
|
|
40398
|
+
*
|
|
40399
|
+
* @example
|
|
40400
|
+
* 012345
|
|
40401
|
+
*/
|
|
40402
|
+
accountId?: string;
|
|
40403
|
+
static names(): { [key: string]: string } {
|
|
40404
|
+
return {
|
|
40405
|
+
accountId: 'accountId',
|
|
40406
|
+
};
|
|
40407
|
+
}
|
|
40408
|
+
|
|
40409
|
+
static types(): { [key: string]: any } {
|
|
40410
|
+
return {
|
|
40411
|
+
accountId: 'string',
|
|
40412
|
+
};
|
|
40413
|
+
}
|
|
40414
|
+
|
|
40415
|
+
constructor(map?: { [key: string]: any }) {
|
|
40416
|
+
super(map);
|
|
40417
|
+
}
|
|
40418
|
+
}
|
|
40419
|
+
|
|
40420
|
+
export class AddRecordPermissionRequestTenantContext extends $tea.Model {
|
|
40421
|
+
/**
|
|
40422
|
+
* @example
|
|
40423
|
+
* xxxxxx
|
|
40424
|
+
*/
|
|
40425
|
+
tenantId?: string;
|
|
40426
|
+
static names(): { [key: string]: string } {
|
|
40427
|
+
return {
|
|
40428
|
+
tenantId: 'tenantId',
|
|
40429
|
+
};
|
|
40430
|
+
}
|
|
40431
|
+
|
|
40432
|
+
static types(): { [key: string]: any } {
|
|
40433
|
+
return {
|
|
40434
|
+
tenantId: 'string',
|
|
40435
|
+
};
|
|
40436
|
+
}
|
|
40437
|
+
|
|
40438
|
+
constructor(map?: { [key: string]: any }) {
|
|
40439
|
+
super(map);
|
|
40440
|
+
}
|
|
40441
|
+
}
|
|
40442
|
+
|
|
39229
40443
|
export class AddScenegroupMemberHeadersAccountContext extends $tea.Model {
|
|
39230
40444
|
/**
|
|
39231
40445
|
* @remarks
|
|
@@ -40852,6 +42066,28 @@ export class CreateEventRequestAttendees extends $tea.Model {
|
|
|
40852
42066
|
}
|
|
40853
42067
|
}
|
|
40854
42068
|
|
|
42069
|
+
export class CreateEventRequestCardInstances extends $tea.Model {
|
|
42070
|
+
outTrackId?: string;
|
|
42071
|
+
scenario?: string;
|
|
42072
|
+
static names(): { [key: string]: string } {
|
|
42073
|
+
return {
|
|
42074
|
+
outTrackId: 'OutTrackId',
|
|
42075
|
+
scenario: 'Scenario',
|
|
42076
|
+
};
|
|
42077
|
+
}
|
|
42078
|
+
|
|
42079
|
+
static types(): { [key: string]: any } {
|
|
42080
|
+
return {
|
|
42081
|
+
outTrackId: 'string',
|
|
42082
|
+
scenario: 'string',
|
|
42083
|
+
};
|
|
42084
|
+
}
|
|
42085
|
+
|
|
42086
|
+
constructor(map?: { [key: string]: any }) {
|
|
42087
|
+
super(map);
|
|
42088
|
+
}
|
|
42089
|
+
}
|
|
42090
|
+
|
|
40855
42091
|
export class CreateEventRequestEnd extends $tea.Model {
|
|
40856
42092
|
/**
|
|
40857
42093
|
* @example
|
|
@@ -49300,6 +50536,55 @@ export class GetSheetRequestTenantContext extends $tea.Model {
|
|
|
49300
50536
|
}
|
|
49301
50537
|
}
|
|
49302
50538
|
|
|
50539
|
+
export class GetSheetContentJobIdHeadersAccountContext extends $tea.Model {
|
|
50540
|
+
/**
|
|
50541
|
+
* @remarks
|
|
50542
|
+
* This parameter is required.
|
|
50543
|
+
*
|
|
50544
|
+
* @example
|
|
50545
|
+
* 012345
|
|
50546
|
+
*/
|
|
50547
|
+
accountId?: string;
|
|
50548
|
+
static names(): { [key: string]: string } {
|
|
50549
|
+
return {
|
|
50550
|
+
accountId: 'accountId',
|
|
50551
|
+
};
|
|
50552
|
+
}
|
|
50553
|
+
|
|
50554
|
+
static types(): { [key: string]: any } {
|
|
50555
|
+
return {
|
|
50556
|
+
accountId: 'string',
|
|
50557
|
+
};
|
|
50558
|
+
}
|
|
50559
|
+
|
|
50560
|
+
constructor(map?: { [key: string]: any }) {
|
|
50561
|
+
super(map);
|
|
50562
|
+
}
|
|
50563
|
+
}
|
|
50564
|
+
|
|
50565
|
+
export class GetSheetContentJobIdRequestTenantContext extends $tea.Model {
|
|
50566
|
+
/**
|
|
50567
|
+
* @example
|
|
50568
|
+
* xxxxxx
|
|
50569
|
+
*/
|
|
50570
|
+
tenantId?: string;
|
|
50571
|
+
static names(): { [key: string]: string } {
|
|
50572
|
+
return {
|
|
50573
|
+
tenantId: 'tenantId',
|
|
50574
|
+
};
|
|
50575
|
+
}
|
|
50576
|
+
|
|
50577
|
+
static types(): { [key: string]: any } {
|
|
50578
|
+
return {
|
|
50579
|
+
tenantId: 'string',
|
|
50580
|
+
};
|
|
50581
|
+
}
|
|
50582
|
+
|
|
50583
|
+
constructor(map?: { [key: string]: any }) {
|
|
50584
|
+
super(map);
|
|
50585
|
+
}
|
|
50586
|
+
}
|
|
50587
|
+
|
|
49303
50588
|
export class GetSpaceDirectoriesHeadersAccountContext extends $tea.Model {
|
|
49304
50589
|
/**
|
|
49305
50590
|
* @remarks
|
|
@@ -50470,6 +51755,104 @@ export class GetUserResponseBodyUnionEmpExt extends $tea.Model {
|
|
|
50470
51755
|
}
|
|
50471
51756
|
}
|
|
50472
51757
|
|
|
51758
|
+
export class GetUserIdHeadersAccountContext extends $tea.Model {
|
|
51759
|
+
/**
|
|
51760
|
+
* @remarks
|
|
51761
|
+
* This parameter is required.
|
|
51762
|
+
*
|
|
51763
|
+
* @example
|
|
51764
|
+
* 012345
|
|
51765
|
+
*/
|
|
51766
|
+
accountId?: string;
|
|
51767
|
+
static names(): { [key: string]: string } {
|
|
51768
|
+
return {
|
|
51769
|
+
accountId: 'accountId',
|
|
51770
|
+
};
|
|
51771
|
+
}
|
|
51772
|
+
|
|
51773
|
+
static types(): { [key: string]: any } {
|
|
51774
|
+
return {
|
|
51775
|
+
accountId: 'string',
|
|
51776
|
+
};
|
|
51777
|
+
}
|
|
51778
|
+
|
|
51779
|
+
constructor(map?: { [key: string]: any }) {
|
|
51780
|
+
super(map);
|
|
51781
|
+
}
|
|
51782
|
+
}
|
|
51783
|
+
|
|
51784
|
+
export class GetUserIdRequestTenantContext extends $tea.Model {
|
|
51785
|
+
/**
|
|
51786
|
+
* @example
|
|
51787
|
+
* xxxxxx
|
|
51788
|
+
*/
|
|
51789
|
+
tenantId?: string;
|
|
51790
|
+
static names(): { [key: string]: string } {
|
|
51791
|
+
return {
|
|
51792
|
+
tenantId: 'tenantId',
|
|
51793
|
+
};
|
|
51794
|
+
}
|
|
51795
|
+
|
|
51796
|
+
static types(): { [key: string]: any } {
|
|
51797
|
+
return {
|
|
51798
|
+
tenantId: 'string',
|
|
51799
|
+
};
|
|
51800
|
+
}
|
|
51801
|
+
|
|
51802
|
+
constructor(map?: { [key: string]: any }) {
|
|
51803
|
+
super(map);
|
|
51804
|
+
}
|
|
51805
|
+
}
|
|
51806
|
+
|
|
51807
|
+
export class GetUserIdByOrgIdAndStaffIdHeadersAccountContext extends $tea.Model {
|
|
51808
|
+
/**
|
|
51809
|
+
* @remarks
|
|
51810
|
+
* This parameter is required.
|
|
51811
|
+
*
|
|
51812
|
+
* @example
|
|
51813
|
+
* 012345
|
|
51814
|
+
*/
|
|
51815
|
+
accountId?: string;
|
|
51816
|
+
static names(): { [key: string]: string } {
|
|
51817
|
+
return {
|
|
51818
|
+
accountId: 'accountId',
|
|
51819
|
+
};
|
|
51820
|
+
}
|
|
51821
|
+
|
|
51822
|
+
static types(): { [key: string]: any } {
|
|
51823
|
+
return {
|
|
51824
|
+
accountId: 'string',
|
|
51825
|
+
};
|
|
51826
|
+
}
|
|
51827
|
+
|
|
51828
|
+
constructor(map?: { [key: string]: any }) {
|
|
51829
|
+
super(map);
|
|
51830
|
+
}
|
|
51831
|
+
}
|
|
51832
|
+
|
|
51833
|
+
export class GetUserIdByOrgIdAndStaffIdRequestTenantContext extends $tea.Model {
|
|
51834
|
+
/**
|
|
51835
|
+
* @example
|
|
51836
|
+
* xxxxxx
|
|
51837
|
+
*/
|
|
51838
|
+
tenantId?: string;
|
|
51839
|
+
static names(): { [key: string]: string } {
|
|
51840
|
+
return {
|
|
51841
|
+
tenantId: 'tenantId',
|
|
51842
|
+
};
|
|
51843
|
+
}
|
|
51844
|
+
|
|
51845
|
+
static types(): { [key: string]: any } {
|
|
51846
|
+
return {
|
|
51847
|
+
tenantId: 'string',
|
|
51848
|
+
};
|
|
51849
|
+
}
|
|
51850
|
+
|
|
51851
|
+
constructor(map?: { [key: string]: any }) {
|
|
51852
|
+
super(map);
|
|
51853
|
+
}
|
|
51854
|
+
}
|
|
51855
|
+
|
|
50473
51856
|
export class GetUserLatestPlanHeadersAccountContext extends $tea.Model {
|
|
50474
51857
|
/**
|
|
50475
51858
|
* @remarks
|
|
@@ -53835,6 +55218,127 @@ export class ListTeamsResponseBodyTeams extends $tea.Model {
|
|
|
53835
55218
|
}
|
|
53836
55219
|
}
|
|
53837
55220
|
|
|
55221
|
+
export class ListTemplateHeadersAccountContext extends $tea.Model {
|
|
55222
|
+
/**
|
|
55223
|
+
* @remarks
|
|
55224
|
+
* This parameter is required.
|
|
55225
|
+
*
|
|
55226
|
+
* @example
|
|
55227
|
+
* 012345
|
|
55228
|
+
*/
|
|
55229
|
+
accountId?: string;
|
|
55230
|
+
static names(): { [key: string]: string } {
|
|
55231
|
+
return {
|
|
55232
|
+
accountId: 'accountId',
|
|
55233
|
+
};
|
|
55234
|
+
}
|
|
55235
|
+
|
|
55236
|
+
static types(): { [key: string]: any } {
|
|
55237
|
+
return {
|
|
55238
|
+
accountId: 'string',
|
|
55239
|
+
};
|
|
55240
|
+
}
|
|
55241
|
+
|
|
55242
|
+
constructor(map?: { [key: string]: any }) {
|
|
55243
|
+
super(map);
|
|
55244
|
+
}
|
|
55245
|
+
}
|
|
55246
|
+
|
|
55247
|
+
export class ListTemplateRequestTenantContext extends $tea.Model {
|
|
55248
|
+
/**
|
|
55249
|
+
* @example
|
|
55250
|
+
* xxxxxx
|
|
55251
|
+
*/
|
|
55252
|
+
tenantId?: string;
|
|
55253
|
+
static names(): { [key: string]: string } {
|
|
55254
|
+
return {
|
|
55255
|
+
tenantId: 'tenantId',
|
|
55256
|
+
};
|
|
55257
|
+
}
|
|
55258
|
+
|
|
55259
|
+
static types(): { [key: string]: any } {
|
|
55260
|
+
return {
|
|
55261
|
+
tenantId: 'string',
|
|
55262
|
+
};
|
|
55263
|
+
}
|
|
55264
|
+
|
|
55265
|
+
constructor(map?: { [key: string]: any }) {
|
|
55266
|
+
super(map);
|
|
55267
|
+
}
|
|
55268
|
+
}
|
|
55269
|
+
|
|
55270
|
+
export class ListTemplateResponseBodyTemplateList extends $tea.Model {
|
|
55271
|
+
/**
|
|
55272
|
+
* @example
|
|
55273
|
+
* URL
|
|
55274
|
+
*/
|
|
55275
|
+
coverUrl?: string;
|
|
55276
|
+
/**
|
|
55277
|
+
* @example
|
|
55278
|
+
* 1596506100000
|
|
55279
|
+
*/
|
|
55280
|
+
createTime?: number;
|
|
55281
|
+
/**
|
|
55282
|
+
* @example
|
|
55283
|
+
* WORKBOOK
|
|
55284
|
+
*/
|
|
55285
|
+
docType?: string;
|
|
55286
|
+
/**
|
|
55287
|
+
* @example
|
|
55288
|
+
* 123
|
|
55289
|
+
*/
|
|
55290
|
+
id?: string;
|
|
55291
|
+
/**
|
|
55292
|
+
* @example
|
|
55293
|
+
* user_template
|
|
55294
|
+
*/
|
|
55295
|
+
templateType?: string;
|
|
55296
|
+
/**
|
|
55297
|
+
* @example
|
|
55298
|
+
* title
|
|
55299
|
+
*/
|
|
55300
|
+
title?: string;
|
|
55301
|
+
/**
|
|
55302
|
+
* @example
|
|
55303
|
+
* 1596506100000
|
|
55304
|
+
*/
|
|
55305
|
+
updateTime?: number;
|
|
55306
|
+
/**
|
|
55307
|
+
* @example
|
|
55308
|
+
* workspaceId
|
|
55309
|
+
*/
|
|
55310
|
+
workspaceId?: string;
|
|
55311
|
+
static names(): { [key: string]: string } {
|
|
55312
|
+
return {
|
|
55313
|
+
coverUrl: 'CoverUrl',
|
|
55314
|
+
createTime: 'CreateTime',
|
|
55315
|
+
docType: 'DocType',
|
|
55316
|
+
id: 'Id',
|
|
55317
|
+
templateType: 'TemplateType',
|
|
55318
|
+
title: 'Title',
|
|
55319
|
+
updateTime: 'UpdateTime',
|
|
55320
|
+
workspaceId: 'WorkspaceId',
|
|
55321
|
+
};
|
|
55322
|
+
}
|
|
55323
|
+
|
|
55324
|
+
static types(): { [key: string]: any } {
|
|
55325
|
+
return {
|
|
55326
|
+
coverUrl: 'string',
|
|
55327
|
+
createTime: 'number',
|
|
55328
|
+
docType: 'string',
|
|
55329
|
+
id: 'string',
|
|
55330
|
+
templateType: 'string',
|
|
55331
|
+
title: 'string',
|
|
55332
|
+
updateTime: 'number',
|
|
55333
|
+
workspaceId: 'string',
|
|
55334
|
+
};
|
|
55335
|
+
}
|
|
55336
|
+
|
|
55337
|
+
constructor(map?: { [key: string]: any }) {
|
|
55338
|
+
super(map);
|
|
55339
|
+
}
|
|
55340
|
+
}
|
|
55341
|
+
|
|
53838
55342
|
export class ListWorkspacesHeadersAccountContext extends $tea.Model {
|
|
53839
55343
|
/**
|
|
53840
55344
|
* @remarks
|
|
@@ -54087,6 +55591,28 @@ export class PatchEventRequestAttendees extends $tea.Model {
|
|
|
54087
55591
|
}
|
|
54088
55592
|
}
|
|
54089
55593
|
|
|
55594
|
+
export class PatchEventRequestCardInstances extends $tea.Model {
|
|
55595
|
+
outTrackId?: string;
|
|
55596
|
+
scenario?: string;
|
|
55597
|
+
static names(): { [key: string]: string } {
|
|
55598
|
+
return {
|
|
55599
|
+
outTrackId: 'OutTrackId',
|
|
55600
|
+
scenario: 'Scenario',
|
|
55601
|
+
};
|
|
55602
|
+
}
|
|
55603
|
+
|
|
55604
|
+
static types(): { [key: string]: any } {
|
|
55605
|
+
return {
|
|
55606
|
+
outTrackId: 'string',
|
|
55607
|
+
scenario: 'string',
|
|
55608
|
+
};
|
|
55609
|
+
}
|
|
55610
|
+
|
|
55611
|
+
constructor(map?: { [key: string]: any }) {
|
|
55612
|
+
super(map);
|
|
55613
|
+
}
|
|
55614
|
+
}
|
|
55615
|
+
|
|
54090
55616
|
export class PatchEventRequestEnd extends $tea.Model {
|
|
54091
55617
|
/**
|
|
54092
55618
|
* @example
|
|
@@ -57859,6 +59385,78 @@ export class QueryOrgTodoTasksResponseBodyTodoCards extends $tea.Model {
|
|
|
57859
59385
|
}
|
|
57860
59386
|
}
|
|
57861
59387
|
|
|
59388
|
+
export class QueryRecordMinutesUrlHeadersAccountContext extends $tea.Model {
|
|
59389
|
+
/**
|
|
59390
|
+
* @remarks
|
|
59391
|
+
* This parameter is required.
|
|
59392
|
+
*
|
|
59393
|
+
* @example
|
|
59394
|
+
* 012345
|
|
59395
|
+
*/
|
|
59396
|
+
accountId?: string;
|
|
59397
|
+
static names(): { [key: string]: string } {
|
|
59398
|
+
return {
|
|
59399
|
+
accountId: 'accountId',
|
|
59400
|
+
};
|
|
59401
|
+
}
|
|
59402
|
+
|
|
59403
|
+
static types(): { [key: string]: any } {
|
|
59404
|
+
return {
|
|
59405
|
+
accountId: 'string',
|
|
59406
|
+
};
|
|
59407
|
+
}
|
|
59408
|
+
|
|
59409
|
+
constructor(map?: { [key: string]: any }) {
|
|
59410
|
+
super(map);
|
|
59411
|
+
}
|
|
59412
|
+
}
|
|
59413
|
+
|
|
59414
|
+
export class QueryRecordMinutesUrlRequestTenantContext extends $tea.Model {
|
|
59415
|
+
/**
|
|
59416
|
+
* @example
|
|
59417
|
+
* xxxxxx
|
|
59418
|
+
*/
|
|
59419
|
+
tenantId?: string;
|
|
59420
|
+
static names(): { [key: string]: string } {
|
|
59421
|
+
return {
|
|
59422
|
+
tenantId: 'tenantId',
|
|
59423
|
+
};
|
|
59424
|
+
}
|
|
59425
|
+
|
|
59426
|
+
static types(): { [key: string]: any } {
|
|
59427
|
+
return {
|
|
59428
|
+
tenantId: 'string',
|
|
59429
|
+
};
|
|
59430
|
+
}
|
|
59431
|
+
|
|
59432
|
+
constructor(map?: { [key: string]: any }) {
|
|
59433
|
+
super(map);
|
|
59434
|
+
}
|
|
59435
|
+
}
|
|
59436
|
+
|
|
59437
|
+
export class QueryRecordMinutesUrlResponseBodyRecordMinutesUrls extends $tea.Model {
|
|
59438
|
+
/**
|
|
59439
|
+
* @example
|
|
59440
|
+
* url
|
|
59441
|
+
*/
|
|
59442
|
+
recordMinutesUrl?: string;
|
|
59443
|
+
static names(): { [key: string]: string } {
|
|
59444
|
+
return {
|
|
59445
|
+
recordMinutesUrl: 'RecordMinutesUrl',
|
|
59446
|
+
};
|
|
59447
|
+
}
|
|
59448
|
+
|
|
59449
|
+
static types(): { [key: string]: any } {
|
|
59450
|
+
return {
|
|
59451
|
+
recordMinutesUrl: 'string',
|
|
59452
|
+
};
|
|
59453
|
+
}
|
|
59454
|
+
|
|
59455
|
+
constructor(map?: { [key: string]: any }) {
|
|
59456
|
+
super(map);
|
|
59457
|
+
}
|
|
59458
|
+
}
|
|
59459
|
+
|
|
57862
59460
|
export class QueryReportDetailHeadersAccountContext extends $tea.Model {
|
|
57863
59461
|
/**
|
|
57864
59462
|
* @remarks
|
|
@@ -61634,6 +63232,84 @@ export default class Client extends OpenApi {
|
|
|
61634
63232
|
return await this.addMeetingRoomsWithOptions(request, headers, runtime);
|
|
61635
63233
|
}
|
|
61636
63234
|
|
|
63235
|
+
/**
|
|
63236
|
+
* 添加闪记权限
|
|
63237
|
+
*
|
|
63238
|
+
* @param tmpReq - AddRecordPermissionRequest
|
|
63239
|
+
* @param tmpHeader - AddRecordPermissionHeaders
|
|
63240
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
63241
|
+
* @returns AddRecordPermissionResponse
|
|
63242
|
+
*/
|
|
63243
|
+
async addRecordPermissionWithOptions(tmpReq: AddRecordPermissionRequest, tmpHeader: AddRecordPermissionHeaders, runtime: $Util.RuntimeOptions): Promise<AddRecordPermissionResponse> {
|
|
63244
|
+
Util.validateModel(tmpReq);
|
|
63245
|
+
let request = new AddRecordPermissionShrinkRequest({ });
|
|
63246
|
+
OpenApiUtil.convert(tmpReq, request);
|
|
63247
|
+
let headers = new AddRecordPermissionShrinkHeaders({ });
|
|
63248
|
+
OpenApiUtil.convert(tmpHeader, headers);
|
|
63249
|
+
if (!Util.isUnset(tmpHeader.accountContext)) {
|
|
63250
|
+
headers.accountContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpHeader.accountContext, "AccountContext", "json");
|
|
63251
|
+
}
|
|
63252
|
+
|
|
63253
|
+
if (!Util.isUnset(tmpReq.tenantContext)) {
|
|
63254
|
+
request.tenantContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.tenantContext, "TenantContext", "json");
|
|
63255
|
+
}
|
|
63256
|
+
|
|
63257
|
+
let body : {[key: string ]: any} = { };
|
|
63258
|
+
if (!Util.isUnset(request.bizType)) {
|
|
63259
|
+
body["BizType"] = request.bizType;
|
|
63260
|
+
}
|
|
63261
|
+
|
|
63262
|
+
if (!Util.isUnset(request.conferenceId)) {
|
|
63263
|
+
body["ConferenceId"] = request.conferenceId;
|
|
63264
|
+
}
|
|
63265
|
+
|
|
63266
|
+
if (!Util.isUnset(request.tenantContextShrink)) {
|
|
63267
|
+
body["TenantContext"] = request.tenantContextShrink;
|
|
63268
|
+
}
|
|
63269
|
+
|
|
63270
|
+
if (!Util.isUnset(request.userId)) {
|
|
63271
|
+
body["UserId"] = request.userId;
|
|
63272
|
+
}
|
|
63273
|
+
|
|
63274
|
+
let realHeaders : {[key: string ]: string} = { };
|
|
63275
|
+
if (!Util.isUnset(headers.commonHeaders)) {
|
|
63276
|
+
realHeaders = headers.commonHeaders;
|
|
63277
|
+
}
|
|
63278
|
+
|
|
63279
|
+
if (!Util.isUnset(headers.accountContextShrink)) {
|
|
63280
|
+
realHeaders["AccountContext"] = Util.toJSONString(headers.accountContextShrink);
|
|
63281
|
+
}
|
|
63282
|
+
|
|
63283
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
63284
|
+
headers: realHeaders,
|
|
63285
|
+
body: OpenApiUtil.parseToMap(body),
|
|
63286
|
+
});
|
|
63287
|
+
let params = new $OpenApi.Params({
|
|
63288
|
+
action: "AddRecordPermission",
|
|
63289
|
+
version: "2023-04-26",
|
|
63290
|
+
protocol: "HTTPS",
|
|
63291
|
+
pathname: `/dingtalk/v1/ysp/addRecordPermission`,
|
|
63292
|
+
method: "POST",
|
|
63293
|
+
authType: "AK",
|
|
63294
|
+
style: "ROA",
|
|
63295
|
+
reqBodyType: "formData",
|
|
63296
|
+
bodyType: "json",
|
|
63297
|
+
});
|
|
63298
|
+
return $tea.cast<AddRecordPermissionResponse>(await this.callApi(params, req, runtime), new AddRecordPermissionResponse({}));
|
|
63299
|
+
}
|
|
63300
|
+
|
|
63301
|
+
/**
|
|
63302
|
+
* 添加闪记权限
|
|
63303
|
+
*
|
|
63304
|
+
* @param request - AddRecordPermissionRequest
|
|
63305
|
+
* @returns AddRecordPermissionResponse
|
|
63306
|
+
*/
|
|
63307
|
+
async addRecordPermission(request: AddRecordPermissionRequest): Promise<AddRecordPermissionResponse> {
|
|
63308
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
63309
|
+
let headers = new AddRecordPermissionHeaders({ });
|
|
63310
|
+
return await this.addRecordPermissionWithOptions(request, headers, runtime);
|
|
63311
|
+
}
|
|
63312
|
+
|
|
61637
63313
|
/**
|
|
61638
63314
|
* 新增群成员
|
|
61639
63315
|
*
|
|
@@ -63198,6 +64874,10 @@ export default class Client extends OpenApi {
|
|
|
63198
64874
|
request.attendeesShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.attendees, "Attendees", "json");
|
|
63199
64875
|
}
|
|
63200
64876
|
|
|
64877
|
+
if (!Util.isUnset(tmpReq.cardInstances)) {
|
|
64878
|
+
request.cardInstancesShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.cardInstances, "CardInstances", "json");
|
|
64879
|
+
}
|
|
64880
|
+
|
|
63201
64881
|
if (!Util.isUnset(tmpReq.end)) {
|
|
63202
64882
|
request.endShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.end, "End", "json");
|
|
63203
64883
|
}
|
|
@@ -63239,6 +64919,10 @@ export default class Client extends OpenApi {
|
|
|
63239
64919
|
body["Attendees"] = request.attendeesShrink;
|
|
63240
64920
|
}
|
|
63241
64921
|
|
|
64922
|
+
if (!Util.isUnset(request.cardInstancesShrink)) {
|
|
64923
|
+
body["CardInstances"] = request.cardInstancesShrink;
|
|
64924
|
+
}
|
|
64925
|
+
|
|
63242
64926
|
if (!Util.isUnset(request.description)) {
|
|
63243
64927
|
body["Description"] = request.description;
|
|
63244
64928
|
}
|
|
@@ -69442,6 +71126,80 @@ export default class Client extends OpenApi {
|
|
|
69442
71126
|
return await this.getSheetWithOptions(request, headers, runtime);
|
|
69443
71127
|
}
|
|
69444
71128
|
|
|
71129
|
+
/**
|
|
71130
|
+
* 获取表格文档内容jobId
|
|
71131
|
+
*
|
|
71132
|
+
* @param tmpReq - GetSheetContentJobIdRequest
|
|
71133
|
+
* @param tmpHeader - GetSheetContentJobIdHeaders
|
|
71134
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
71135
|
+
* @returns GetSheetContentJobIdResponse
|
|
71136
|
+
*/
|
|
71137
|
+
async getSheetContentJobIdWithOptions(tmpReq: GetSheetContentJobIdRequest, tmpHeader: GetSheetContentJobIdHeaders, runtime: $Util.RuntimeOptions): Promise<GetSheetContentJobIdResponse> {
|
|
71138
|
+
Util.validateModel(tmpReq);
|
|
71139
|
+
let request = new GetSheetContentJobIdShrinkRequest({ });
|
|
71140
|
+
OpenApiUtil.convert(tmpReq, request);
|
|
71141
|
+
let headers = new GetSheetContentJobIdShrinkHeaders({ });
|
|
71142
|
+
OpenApiUtil.convert(tmpHeader, headers);
|
|
71143
|
+
if (!Util.isUnset(tmpHeader.accountContext)) {
|
|
71144
|
+
headers.accountContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpHeader.accountContext, "AccountContext", "json");
|
|
71145
|
+
}
|
|
71146
|
+
|
|
71147
|
+
if (!Util.isUnset(tmpReq.tenantContext)) {
|
|
71148
|
+
request.tenantContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.tenantContext, "TenantContext", "json");
|
|
71149
|
+
}
|
|
71150
|
+
|
|
71151
|
+
let body : {[key: string ]: any} = { };
|
|
71152
|
+
if (!Util.isUnset(request.dentryUuid)) {
|
|
71153
|
+
body["DentryUuid"] = request.dentryUuid;
|
|
71154
|
+
}
|
|
71155
|
+
|
|
71156
|
+
if (!Util.isUnset(request.exportType)) {
|
|
71157
|
+
body["ExportType"] = request.exportType;
|
|
71158
|
+
}
|
|
71159
|
+
|
|
71160
|
+
if (!Util.isUnset(request.tenantContextShrink)) {
|
|
71161
|
+
body["TenantContext"] = request.tenantContextShrink;
|
|
71162
|
+
}
|
|
71163
|
+
|
|
71164
|
+
let realHeaders : {[key: string ]: string} = { };
|
|
71165
|
+
if (!Util.isUnset(headers.commonHeaders)) {
|
|
71166
|
+
realHeaders = headers.commonHeaders;
|
|
71167
|
+
}
|
|
71168
|
+
|
|
71169
|
+
if (!Util.isUnset(headers.accountContextShrink)) {
|
|
71170
|
+
realHeaders["AccountContext"] = Util.toJSONString(headers.accountContextShrink);
|
|
71171
|
+
}
|
|
71172
|
+
|
|
71173
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
71174
|
+
headers: realHeaders,
|
|
71175
|
+
body: OpenApiUtil.parseToMap(body),
|
|
71176
|
+
});
|
|
71177
|
+
let params = new $OpenApi.Params({
|
|
71178
|
+
action: "GetSheetContentJobId",
|
|
71179
|
+
version: "2023-04-26",
|
|
71180
|
+
protocol: "HTTPS",
|
|
71181
|
+
pathname: `/dingtalk/v2/documents/getSheetContentJobId`,
|
|
71182
|
+
method: "POST",
|
|
71183
|
+
authType: "AK",
|
|
71184
|
+
style: "ROA",
|
|
71185
|
+
reqBodyType: "formData",
|
|
71186
|
+
bodyType: "json",
|
|
71187
|
+
});
|
|
71188
|
+
return $tea.cast<GetSheetContentJobIdResponse>(await this.callApi(params, req, runtime), new GetSheetContentJobIdResponse({}));
|
|
71189
|
+
}
|
|
71190
|
+
|
|
71191
|
+
/**
|
|
71192
|
+
* 获取表格文档内容jobId
|
|
71193
|
+
*
|
|
71194
|
+
* @param request - GetSheetContentJobIdRequest
|
|
71195
|
+
* @returns GetSheetContentJobIdResponse
|
|
71196
|
+
*/
|
|
71197
|
+
async getSheetContentJobId(request: GetSheetContentJobIdRequest): Promise<GetSheetContentJobIdResponse> {
|
|
71198
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
71199
|
+
let headers = new GetSheetContentJobIdHeaders({ });
|
|
71200
|
+
return await this.getSheetContentJobIdWithOptions(request, headers, runtime);
|
|
71201
|
+
}
|
|
71202
|
+
|
|
69445
71203
|
/**
|
|
69446
71204
|
* 查询知识库下的目录结构
|
|
69447
71205
|
*
|
|
@@ -69820,6 +71578,146 @@ export default class Client extends OpenApi {
|
|
|
69820
71578
|
return await this.getUserWithOptions(request, headers, runtime);
|
|
69821
71579
|
}
|
|
69822
71580
|
|
|
71581
|
+
/**
|
|
71582
|
+
* 根据unionId获取用户userId
|
|
71583
|
+
*
|
|
71584
|
+
* @param tmpReq - GetUserIdRequest
|
|
71585
|
+
* @param tmpHeader - GetUserIdHeaders
|
|
71586
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
71587
|
+
* @returns GetUserIdResponse
|
|
71588
|
+
*/
|
|
71589
|
+
async getUserIdWithOptions(tmpReq: GetUserIdRequest, tmpHeader: GetUserIdHeaders, runtime: $Util.RuntimeOptions): Promise<GetUserIdResponse> {
|
|
71590
|
+
Util.validateModel(tmpReq);
|
|
71591
|
+
let request = new GetUserIdShrinkRequest({ });
|
|
71592
|
+
OpenApiUtil.convert(tmpReq, request);
|
|
71593
|
+
let headers = new GetUserIdShrinkHeaders({ });
|
|
71594
|
+
OpenApiUtil.convert(tmpHeader, headers);
|
|
71595
|
+
if (!Util.isUnset(tmpHeader.accountContext)) {
|
|
71596
|
+
headers.accountContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpHeader.accountContext, "AccountContext", "json");
|
|
71597
|
+
}
|
|
71598
|
+
|
|
71599
|
+
if (!Util.isUnset(tmpReq.tenantContext)) {
|
|
71600
|
+
request.tenantContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.tenantContext, "TenantContext", "json");
|
|
71601
|
+
}
|
|
71602
|
+
|
|
71603
|
+
let body : {[key: string ]: any} = { };
|
|
71604
|
+
if (!Util.isUnset(request.tenantContextShrink)) {
|
|
71605
|
+
body["TenantContext"] = request.tenantContextShrink;
|
|
71606
|
+
}
|
|
71607
|
+
|
|
71608
|
+
if (!Util.isUnset(request.unionId)) {
|
|
71609
|
+
body["UnionId"] = request.unionId;
|
|
71610
|
+
}
|
|
71611
|
+
|
|
71612
|
+
let realHeaders : {[key: string ]: string} = { };
|
|
71613
|
+
if (!Util.isUnset(headers.commonHeaders)) {
|
|
71614
|
+
realHeaders = headers.commonHeaders;
|
|
71615
|
+
}
|
|
71616
|
+
|
|
71617
|
+
if (!Util.isUnset(headers.accountContextShrink)) {
|
|
71618
|
+
realHeaders["AccountContext"] = Util.toJSONString(headers.accountContextShrink);
|
|
71619
|
+
}
|
|
71620
|
+
|
|
71621
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
71622
|
+
headers: realHeaders,
|
|
71623
|
+
body: OpenApiUtil.parseToMap(body),
|
|
71624
|
+
});
|
|
71625
|
+
let params = new $OpenApi.Params({
|
|
71626
|
+
action: "GetUserId",
|
|
71627
|
+
version: "2023-04-26",
|
|
71628
|
+
protocol: "HTTPS",
|
|
71629
|
+
pathname: `/dingtalk/v1/im/getUserId`,
|
|
71630
|
+
method: "POST",
|
|
71631
|
+
authType: "AK",
|
|
71632
|
+
style: "ROA",
|
|
71633
|
+
reqBodyType: "formData",
|
|
71634
|
+
bodyType: "json",
|
|
71635
|
+
});
|
|
71636
|
+
return $tea.cast<GetUserIdResponse>(await this.callApi(params, req, runtime), new GetUserIdResponse({}));
|
|
71637
|
+
}
|
|
71638
|
+
|
|
71639
|
+
/**
|
|
71640
|
+
* 根据unionId获取用户userId
|
|
71641
|
+
*
|
|
71642
|
+
* @param request - GetUserIdRequest
|
|
71643
|
+
* @returns GetUserIdResponse
|
|
71644
|
+
*/
|
|
71645
|
+
async getUserId(request: GetUserIdRequest): Promise<GetUserIdResponse> {
|
|
71646
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
71647
|
+
let headers = new GetUserIdHeaders({ });
|
|
71648
|
+
return await this.getUserIdWithOptions(request, headers, runtime);
|
|
71649
|
+
}
|
|
71650
|
+
|
|
71651
|
+
/**
|
|
71652
|
+
* 根据orgId和staffId获取用户userId
|
|
71653
|
+
*
|
|
71654
|
+
* @param tmpReq - GetUserIdByOrgIdAndStaffIdRequest
|
|
71655
|
+
* @param tmpHeader - GetUserIdByOrgIdAndStaffIdHeaders
|
|
71656
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
71657
|
+
* @returns GetUserIdByOrgIdAndStaffIdResponse
|
|
71658
|
+
*/
|
|
71659
|
+
async getUserIdByOrgIdAndStaffIdWithOptions(tmpReq: GetUserIdByOrgIdAndStaffIdRequest, tmpHeader: GetUserIdByOrgIdAndStaffIdHeaders, runtime: $Util.RuntimeOptions): Promise<GetUserIdByOrgIdAndStaffIdResponse> {
|
|
71660
|
+
Util.validateModel(tmpReq);
|
|
71661
|
+
let request = new GetUserIdByOrgIdAndStaffIdShrinkRequest({ });
|
|
71662
|
+
OpenApiUtil.convert(tmpReq, request);
|
|
71663
|
+
let headers = new GetUserIdByOrgIdAndStaffIdShrinkHeaders({ });
|
|
71664
|
+
OpenApiUtil.convert(tmpHeader, headers);
|
|
71665
|
+
if (!Util.isUnset(tmpHeader.accountContext)) {
|
|
71666
|
+
headers.accountContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpHeader.accountContext, "AccountContext", "json");
|
|
71667
|
+
}
|
|
71668
|
+
|
|
71669
|
+
if (!Util.isUnset(tmpReq.tenantContext)) {
|
|
71670
|
+
request.tenantContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.tenantContext, "TenantContext", "json");
|
|
71671
|
+
}
|
|
71672
|
+
|
|
71673
|
+
let body : {[key: string ]: any} = { };
|
|
71674
|
+
if (!Util.isUnset(request.orgId)) {
|
|
71675
|
+
body["OrgId"] = request.orgId;
|
|
71676
|
+
}
|
|
71677
|
+
|
|
71678
|
+
if (!Util.isUnset(request.tenantContextShrink)) {
|
|
71679
|
+
body["TenantContext"] = request.tenantContextShrink;
|
|
71680
|
+
}
|
|
71681
|
+
|
|
71682
|
+
let realHeaders : {[key: string ]: string} = { };
|
|
71683
|
+
if (!Util.isUnset(headers.commonHeaders)) {
|
|
71684
|
+
realHeaders = headers.commonHeaders;
|
|
71685
|
+
}
|
|
71686
|
+
|
|
71687
|
+
if (!Util.isUnset(headers.accountContextShrink)) {
|
|
71688
|
+
realHeaders["AccountContext"] = Util.toJSONString(headers.accountContextShrink);
|
|
71689
|
+
}
|
|
71690
|
+
|
|
71691
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
71692
|
+
headers: realHeaders,
|
|
71693
|
+
body: OpenApiUtil.parseToMap(body),
|
|
71694
|
+
});
|
|
71695
|
+
let params = new $OpenApi.Params({
|
|
71696
|
+
action: "GetUserIdByOrgIdAndStaffId",
|
|
71697
|
+
version: "2023-04-26",
|
|
71698
|
+
protocol: "HTTPS",
|
|
71699
|
+
pathname: `/dingtalk/v1/im/getUserIdByOrgIdAndStaffId`,
|
|
71700
|
+
method: "POST",
|
|
71701
|
+
authType: "AK",
|
|
71702
|
+
style: "ROA",
|
|
71703
|
+
reqBodyType: "formData",
|
|
71704
|
+
bodyType: "json",
|
|
71705
|
+
});
|
|
71706
|
+
return $tea.cast<GetUserIdByOrgIdAndStaffIdResponse>(await this.callApi(params, req, runtime), new GetUserIdByOrgIdAndStaffIdResponse({}));
|
|
71707
|
+
}
|
|
71708
|
+
|
|
71709
|
+
/**
|
|
71710
|
+
* 根据orgId和staffId获取用户userId
|
|
71711
|
+
*
|
|
71712
|
+
* @param request - GetUserIdByOrgIdAndStaffIdRequest
|
|
71713
|
+
* @returns GetUserIdByOrgIdAndStaffIdResponse
|
|
71714
|
+
*/
|
|
71715
|
+
async getUserIdByOrgIdAndStaffId(request: GetUserIdByOrgIdAndStaffIdRequest): Promise<GetUserIdByOrgIdAndStaffIdResponse> {
|
|
71716
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
71717
|
+
let headers = new GetUserIdByOrgIdAndStaffIdHeaders({ });
|
|
71718
|
+
return await this.getUserIdByOrgIdAndStaffIdWithOptions(request, headers, runtime);
|
|
71719
|
+
}
|
|
71720
|
+
|
|
69823
71721
|
/**
|
|
69824
71722
|
* 获取用户最新的有效的专属账号迁移方案
|
|
69825
71723
|
*
|
|
@@ -71458,6 +73356,88 @@ export default class Client extends OpenApi {
|
|
|
71458
73356
|
return await this.listTeamsWithOptions(request, headers, runtime);
|
|
71459
73357
|
}
|
|
71460
73358
|
|
|
73359
|
+
/**
|
|
73360
|
+
* 查询文档模板
|
|
73361
|
+
*
|
|
73362
|
+
* @param tmpReq - ListTemplateRequest
|
|
73363
|
+
* @param tmpHeader - ListTemplateHeaders
|
|
73364
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
73365
|
+
* @returns ListTemplateResponse
|
|
73366
|
+
*/
|
|
73367
|
+
async listTemplateWithOptions(tmpReq: ListTemplateRequest, tmpHeader: ListTemplateHeaders, runtime: $Util.RuntimeOptions): Promise<ListTemplateResponse> {
|
|
73368
|
+
Util.validateModel(tmpReq);
|
|
73369
|
+
let request = new ListTemplateShrinkRequest({ });
|
|
73370
|
+
OpenApiUtil.convert(tmpReq, request);
|
|
73371
|
+
let headers = new ListTemplateShrinkHeaders({ });
|
|
73372
|
+
OpenApiUtil.convert(tmpHeader, headers);
|
|
73373
|
+
if (!Util.isUnset(tmpHeader.accountContext)) {
|
|
73374
|
+
headers.accountContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpHeader.accountContext, "AccountContext", "json");
|
|
73375
|
+
}
|
|
73376
|
+
|
|
73377
|
+
if (!Util.isUnset(tmpReq.tenantContext)) {
|
|
73378
|
+
request.tenantContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.tenantContext, "TenantContext", "json");
|
|
73379
|
+
}
|
|
73380
|
+
|
|
73381
|
+
let body : {[key: string ]: any} = { };
|
|
73382
|
+
if (!Util.isUnset(request.maxResults)) {
|
|
73383
|
+
body["MaxResults"] = request.maxResults;
|
|
73384
|
+
}
|
|
73385
|
+
|
|
73386
|
+
if (!Util.isUnset(request.nextToken)) {
|
|
73387
|
+
body["NextToken"] = request.nextToken;
|
|
73388
|
+
}
|
|
73389
|
+
|
|
73390
|
+
if (!Util.isUnset(request.templateType)) {
|
|
73391
|
+
body["TemplateType"] = request.templateType;
|
|
73392
|
+
}
|
|
73393
|
+
|
|
73394
|
+
if (!Util.isUnset(request.tenantContextShrink)) {
|
|
73395
|
+
body["TenantContext"] = request.tenantContextShrink;
|
|
73396
|
+
}
|
|
73397
|
+
|
|
73398
|
+
if (!Util.isUnset(request.workspaceId)) {
|
|
73399
|
+
body["WorkspaceId"] = request.workspaceId;
|
|
73400
|
+
}
|
|
73401
|
+
|
|
73402
|
+
let realHeaders : {[key: string ]: string} = { };
|
|
73403
|
+
if (!Util.isUnset(headers.commonHeaders)) {
|
|
73404
|
+
realHeaders = headers.commonHeaders;
|
|
73405
|
+
}
|
|
73406
|
+
|
|
73407
|
+
if (!Util.isUnset(headers.accountContextShrink)) {
|
|
73408
|
+
realHeaders["AccountContext"] = Util.toJSONString(headers.accountContextShrink);
|
|
73409
|
+
}
|
|
73410
|
+
|
|
73411
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
73412
|
+
headers: realHeaders,
|
|
73413
|
+
body: OpenApiUtil.parseToMap(body),
|
|
73414
|
+
});
|
|
73415
|
+
let params = new $OpenApi.Params({
|
|
73416
|
+
action: "ListTemplate",
|
|
73417
|
+
version: "2023-04-26",
|
|
73418
|
+
protocol: "HTTPS",
|
|
73419
|
+
pathname: `/dingtalk/v1/documents/listTemplate`,
|
|
73420
|
+
method: "POST",
|
|
73421
|
+
authType: "AK",
|
|
73422
|
+
style: "ROA",
|
|
73423
|
+
reqBodyType: "formData",
|
|
73424
|
+
bodyType: "json",
|
|
73425
|
+
});
|
|
73426
|
+
return $tea.cast<ListTemplateResponse>(await this.callApi(params, req, runtime), new ListTemplateResponse({}));
|
|
73427
|
+
}
|
|
73428
|
+
|
|
73429
|
+
/**
|
|
73430
|
+
* 查询文档模板
|
|
73431
|
+
*
|
|
73432
|
+
* @param request - ListTemplateRequest
|
|
73433
|
+
* @returns ListTemplateResponse
|
|
73434
|
+
*/
|
|
73435
|
+
async listTemplate(request: ListTemplateRequest): Promise<ListTemplateResponse> {
|
|
73436
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
73437
|
+
let headers = new ListTemplateHeaders({ });
|
|
73438
|
+
return await this.listTemplateWithOptions(request, headers, runtime);
|
|
73439
|
+
}
|
|
73440
|
+
|
|
71461
73441
|
/**
|
|
71462
73442
|
* 获取知识库列表
|
|
71463
73443
|
*
|
|
@@ -71566,6 +73546,10 @@ export default class Client extends OpenApi {
|
|
|
71566
73546
|
request.attendeesShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.attendees, "Attendees", "json");
|
|
71567
73547
|
}
|
|
71568
73548
|
|
|
73549
|
+
if (!Util.isUnset(tmpReq.cardInstances)) {
|
|
73550
|
+
request.cardInstancesShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.cardInstances, "CardInstances", "json");
|
|
73551
|
+
}
|
|
73552
|
+
|
|
71569
73553
|
if (!Util.isUnset(tmpReq.end)) {
|
|
71570
73554
|
request.endShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.end, "End", "json");
|
|
71571
73555
|
}
|
|
@@ -71599,6 +73583,10 @@ export default class Client extends OpenApi {
|
|
|
71599
73583
|
body["CalendarId"] = request.calendarId;
|
|
71600
73584
|
}
|
|
71601
73585
|
|
|
73586
|
+
if (!Util.isUnset(request.cardInstancesShrink)) {
|
|
73587
|
+
body["CardInstances"] = request.cardInstancesShrink;
|
|
73588
|
+
}
|
|
73589
|
+
|
|
71602
73590
|
if (!Util.isUnset(request.description)) {
|
|
71603
73591
|
body["Description"] = request.description;
|
|
71604
73592
|
}
|
|
@@ -73016,6 +75004,80 @@ export default class Client extends OpenApi {
|
|
|
73016
75004
|
return await this.queryOrgTodoTasksWithOptions(request, headers, runtime);
|
|
73017
75005
|
}
|
|
73018
75006
|
|
|
75007
|
+
/**
|
|
75008
|
+
* 查询闪记的链接,可通过链接查看闪记内容
|
|
75009
|
+
*
|
|
75010
|
+
* @param tmpReq - QueryRecordMinutesUrlRequest
|
|
75011
|
+
* @param tmpHeader - QueryRecordMinutesUrlHeaders
|
|
75012
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
75013
|
+
* @returns QueryRecordMinutesUrlResponse
|
|
75014
|
+
*/
|
|
75015
|
+
async queryRecordMinutesUrlWithOptions(tmpReq: QueryRecordMinutesUrlRequest, tmpHeader: QueryRecordMinutesUrlHeaders, runtime: $Util.RuntimeOptions): Promise<QueryRecordMinutesUrlResponse> {
|
|
75016
|
+
Util.validateModel(tmpReq);
|
|
75017
|
+
let request = new QueryRecordMinutesUrlShrinkRequest({ });
|
|
75018
|
+
OpenApiUtil.convert(tmpReq, request);
|
|
75019
|
+
let headers = new QueryRecordMinutesUrlShrinkHeaders({ });
|
|
75020
|
+
OpenApiUtil.convert(tmpHeader, headers);
|
|
75021
|
+
if (!Util.isUnset(tmpHeader.accountContext)) {
|
|
75022
|
+
headers.accountContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpHeader.accountContext, "AccountContext", "json");
|
|
75023
|
+
}
|
|
75024
|
+
|
|
75025
|
+
if (!Util.isUnset(tmpReq.tenantContext)) {
|
|
75026
|
+
request.tenantContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.tenantContext, "TenantContext", "json");
|
|
75027
|
+
}
|
|
75028
|
+
|
|
75029
|
+
let body : {[key: string ]: any} = { };
|
|
75030
|
+
if (!Util.isUnset(request.bizType)) {
|
|
75031
|
+
body["BizType"] = request.bizType;
|
|
75032
|
+
}
|
|
75033
|
+
|
|
75034
|
+
if (!Util.isUnset(request.conferenceId)) {
|
|
75035
|
+
body["ConferenceId"] = request.conferenceId;
|
|
75036
|
+
}
|
|
75037
|
+
|
|
75038
|
+
if (!Util.isUnset(request.tenantContextShrink)) {
|
|
75039
|
+
body["TenantContext"] = request.tenantContextShrink;
|
|
75040
|
+
}
|
|
75041
|
+
|
|
75042
|
+
let realHeaders : {[key: string ]: string} = { };
|
|
75043
|
+
if (!Util.isUnset(headers.commonHeaders)) {
|
|
75044
|
+
realHeaders = headers.commonHeaders;
|
|
75045
|
+
}
|
|
75046
|
+
|
|
75047
|
+
if (!Util.isUnset(headers.accountContextShrink)) {
|
|
75048
|
+
realHeaders["AccountContext"] = Util.toJSONString(headers.accountContextShrink);
|
|
75049
|
+
}
|
|
75050
|
+
|
|
75051
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
75052
|
+
headers: realHeaders,
|
|
75053
|
+
body: OpenApiUtil.parseToMap(body),
|
|
75054
|
+
});
|
|
75055
|
+
let params = new $OpenApi.Params({
|
|
75056
|
+
action: "QueryRecordMinutesUrl",
|
|
75057
|
+
version: "2023-04-26",
|
|
75058
|
+
protocol: "HTTPS",
|
|
75059
|
+
pathname: `/dingtalk/v1/ysp/queryRecordMinutesUrl`,
|
|
75060
|
+
method: "POST",
|
|
75061
|
+
authType: "AK",
|
|
75062
|
+
style: "ROA",
|
|
75063
|
+
reqBodyType: "formData",
|
|
75064
|
+
bodyType: "json",
|
|
75065
|
+
});
|
|
75066
|
+
return $tea.cast<QueryRecordMinutesUrlResponse>(await this.callApi(params, req, runtime), new QueryRecordMinutesUrlResponse({}));
|
|
75067
|
+
}
|
|
75068
|
+
|
|
75069
|
+
/**
|
|
75070
|
+
* 查询闪记的链接,可通过链接查看闪记内容
|
|
75071
|
+
*
|
|
75072
|
+
* @param request - QueryRecordMinutesUrlRequest
|
|
75073
|
+
* @returns QueryRecordMinutesUrlResponse
|
|
75074
|
+
*/
|
|
75075
|
+
async queryRecordMinutesUrl(request: QueryRecordMinutesUrlRequest): Promise<QueryRecordMinutesUrlResponse> {
|
|
75076
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
75077
|
+
let headers = new QueryRecordMinutesUrlHeaders({ });
|
|
75078
|
+
return await this.queryRecordMinutesUrlWithOptions(request, headers, runtime);
|
|
75079
|
+
}
|
|
75080
|
+
|
|
73019
75081
|
/**
|
|
73020
75082
|
* 获取日志详情
|
|
73021
75083
|
*
|