@alicloud/aliding20230426 2.17.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/src/client.ts CHANGED
@@ -678,9 +678,9 @@ export class AddMeetingRoomsResponse extends $tea.Model {
678
678
  }
679
679
  }
680
680
 
681
- export class AddScenegroupMemberHeaders extends $tea.Model {
681
+ export class AddRecordPermissionHeaders extends $tea.Model {
682
682
  commonHeaders?: { [key: string]: string };
683
- accountContext?: AddScenegroupMemberHeadersAccountContext;
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: AddScenegroupMemberHeadersAccountContext,
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 AddScenegroupMemberShrinkHeaders extends $tea.Model {
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 AddScenegroupMemberRequest extends $tea.Model {
725
+ export class AddRecordPermissionRequest extends $tea.Model {
726
726
  /**
727
727
  * @remarks
728
728
  * This parameter is required.
729
729
  *
730
730
  * @example
731
- * cidt*****Xa4K10w==
731
+ * minutes
732
732
  */
733
- openConversationId?: string;
733
+ bizType?: string;
734
734
  /**
735
735
  * @remarks
736
736
  * This parameter is required.
737
737
  *
738
738
  * @example
739
- * 123xx,224xx
739
+ * 1dddwrqrq
740
740
  */
741
- userIds?: string;
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
- openConversationId: 'OpenConversationId',
745
- userIds: 'UserIds',
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
- openConversationId: 'string',
752
- userIds: 'string',
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 AddScenegroupMemberResponseBody extends $tea.Model {
774
+ export class AddRecordPermissionShrinkRequest extends $tea.Model {
762
775
  /**
763
776
  * @remarks
764
- * requestId
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
- * true
836
+ * 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
773
837
  */
774
- success?: boolean;
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
- success: 'success',
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
- success: 'boolean',
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 AddScenegroupMemberResponse extends $tea.Model {
867
+ export class AddRecordPermissionResponse extends $tea.Model {
795
868
  headers?: { [key: string]: string };
796
869
  statusCode?: number;
797
- body?: AddScenegroupMemberResponseBody;
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: AddScenegroupMemberResponseBody,
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 AddWorkspaceHeaders extends $tea.Model {
892
+ export class AddScenegroupMemberHeaders extends $tea.Model {
820
893
  commonHeaders?: { [key: string]: string };
821
- accountContext?: AddWorkspaceHeadersAccountContext;
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: AddWorkspaceHeadersAccountContext,
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 AddWorkspaceShrinkHeaders extends $tea.Model {
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 AddWorkspaceRequest extends $tea.Model {
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
- name?: string;
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
- name?: string;
898
- optionShrink?: string;
899
- tenantContextShrink?: string;
952
+ userIds?: string;
900
953
  static names(): { [key: string]: string } {
901
954
  return {
902
- name: 'Name',
903
- optionShrink: 'Option',
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
- name: 'string',
911
- optionShrink: 'string',
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 AddWorkspaceResponseBody extends $tea.Model {
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
- workspace?: AddWorkspaceResponseBodyWorkspace;
981
+ /**
982
+ * @example
983
+ * true
984
+ */
985
+ success?: boolean;
931
986
  static names(): { [key: string]: string } {
932
987
  return {
933
988
  requestId: 'requestId',
934
- workspace: 'workspace',
989
+ success: 'success',
935
990
  };
936
991
  }
937
992
 
938
993
  static types(): { [key: string]: any } {
939
994
  return {
940
995
  requestId: 'string',
941
- workspace: AddWorkspaceResponseBodyWorkspace,
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 AddWorkspaceResponse extends $tea.Model {
1005
+ export class AddScenegroupMemberResponse extends $tea.Model {
951
1006
  headers?: { [key: string]: string };
952
1007
  statusCode?: number;
953
- body?: AddWorkspaceResponseBody;
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: AddWorkspaceResponseBody,
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 AddWorkspaceDocMembersHeaders extends $tea.Model {
1030
+ export class AddWorkspaceHeaders extends $tea.Model {
976
1031
  commonHeaders?: { [key: string]: string };
977
- accountContext?: AddWorkspaceDocMembersHeadersAccountContext;
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: AddWorkspaceDocMembersHeadersAccountContext,
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 AddWorkspaceDocMembersShrinkHeaders extends $tea.Model {
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 AddWorkspaceDocMembersRequest extends $tea.Model {
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
- workspaceId?: string;
1079
+ name?: string;
1080
+ option?: AddWorkspaceRequestOption;
1081
+ tenantContext?: AddWorkspaceRequestTenantContext;
1042
1082
  static names(): { [key: string]: string } {
1043
1083
  return {
1044
- members: 'Members',
1045
- nodeId: 'NodeId',
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
- members: { 'type': 'array', 'itemType': AddWorkspaceDocMembersRequestMembers },
1054
- nodeId: 'string',
1055
- tenantContext: AddWorkspaceDocMembersRequestTenantContext,
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 AddWorkspaceDocMembersShrinkRequest extends $tea.Model {
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
- nodeId?: string;
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
- membersShrink: 'Members',
1091
- nodeId: 'NodeId',
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
- membersShrink: 'string',
1100
- nodeId: 'string',
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 AddWorkspaceDocMembersResponseBody extends $tea.Model {
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 AddWorkspaceDocMembersResponse extends $tea.Model {
1161
+ export class AddWorkspaceResponse extends $tea.Model {
1138
1162
  headers?: { [key: string]: string };
1139
1163
  statusCode?: number;
1140
- body?: AddWorkspaceDocMembersResponseBody;
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: AddWorkspaceDocMembersResponseBody,
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 AddWorkspaceMembersHeaders extends $tea.Model {
1186
+ export class AddWorkspaceDocMembersHeaders extends $tea.Model {
1163
1187
  commonHeaders?: { [key: string]: string };
1164
- accountContext?: AddWorkspaceMembersHeadersAccountContext;
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: AddWorkspaceMembersHeadersAccountContext,
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 AddWorkspaceMembersShrinkHeaders extends $tea.Model {
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 } {
@@ -20802,9 +21013,9 @@ export class GetUserIdResponse extends $tea.Model {
20802
21013
  }
20803
21014
  }
20804
21015
 
20805
- export class GetUserLatestPlanHeaders extends $tea.Model {
21016
+ export class GetUserIdByOrgIdAndStaffIdHeaders extends $tea.Model {
20806
21017
  commonHeaders?: { [key: string]: string };
20807
- accountContext?: GetUserLatestPlanHeadersAccountContext;
21018
+ accountContext?: GetUserIdByOrgIdAndStaffIdHeadersAccountContext;
20808
21019
  static names(): { [key: string]: string } {
20809
21020
  return {
20810
21021
  commonHeaders: 'commonHeaders',
@@ -20815,7 +21026,7 @@ export class GetUserLatestPlanHeaders extends $tea.Model {
20815
21026
  static types(): { [key: string]: any } {
20816
21027
  return {
20817
21028
  commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
20818
- accountContext: GetUserLatestPlanHeadersAccountContext,
21029
+ accountContext: GetUserIdByOrgIdAndStaffIdHeadersAccountContext,
20819
21030
  };
20820
21031
  }
20821
21032
 
@@ -20824,7 +21035,7 @@ export class GetUserLatestPlanHeaders extends $tea.Model {
20824
21035
  }
20825
21036
  }
20826
21037
 
20827
- export class GetUserLatestPlanShrinkHeaders extends $tea.Model {
21038
+ export class GetUserIdByOrgIdAndStaffIdShrinkHeaders extends $tea.Model {
20828
21039
  commonHeaders?: { [key: string]: string };
20829
21040
  accountContextShrink?: string;
20830
21041
  static names(): { [key: string]: string } {
@@ -20846,17 +21057,24 @@ export class GetUserLatestPlanShrinkHeaders extends $tea.Model {
20846
21057
  }
20847
21058
  }
20848
21059
 
20849
- export class GetUserLatestPlanRequest extends $tea.Model {
20850
- tenantContext?: GetUserLatestPlanRequestTenantContext;
21060
+ export class GetUserIdByOrgIdAndStaffIdRequest extends $tea.Model {
21061
+ /**
21062
+ * @example
21063
+ * 123456
21064
+ */
21065
+ orgId?: number;
21066
+ tenantContext?: GetUserIdByOrgIdAndStaffIdRequestTenantContext;
20851
21067
  static names(): { [key: string]: string } {
20852
21068
  return {
21069
+ orgId: 'OrgId',
20853
21070
  tenantContext: 'TenantContext',
20854
21071
  };
20855
21072
  }
20856
21073
 
20857
21074
  static types(): { [key: string]: any } {
20858
21075
  return {
20859
- tenantContext: GetUserLatestPlanRequestTenantContext,
21076
+ orgId: 'number',
21077
+ tenantContext: GetUserIdByOrgIdAndStaffIdRequestTenantContext,
20860
21078
  };
20861
21079
  }
20862
21080
 
@@ -20865,16 +21083,23 @@ export class GetUserLatestPlanRequest extends $tea.Model {
20865
21083
  }
20866
21084
  }
20867
21085
 
20868
- export class GetUserLatestPlanShrinkRequest extends $tea.Model {
21086
+ export class GetUserIdByOrgIdAndStaffIdShrinkRequest extends $tea.Model {
21087
+ /**
21088
+ * @example
21089
+ * 123456
21090
+ */
21091
+ orgId?: number;
20869
21092
  tenantContextShrink?: string;
20870
21093
  static names(): { [key: string]: string } {
20871
21094
  return {
21095
+ orgId: 'OrgId',
20872
21096
  tenantContextShrink: 'TenantContext',
20873
21097
  };
20874
21098
  }
20875
21099
 
20876
21100
  static types(): { [key: string]: any } {
20877
21101
  return {
21102
+ orgId: 'number',
20878
21103
  tenantContextShrink: 'string',
20879
21104
  };
20880
21105
  }
@@ -20884,62 +21109,7 @@ export class GetUserLatestPlanShrinkRequest extends $tea.Model {
20884
21109
  }
20885
21110
  }
20886
21111
 
20887
- export class GetUserLatestPlanResponseBody extends $tea.Model {
20888
- /**
20889
- * @example
20890
- * 1
20891
- */
20892
- accountHandleStatus?: number;
20893
- /**
20894
- * @example
20895
- * 2022-02-02
20896
- */
20897
- accountHandleTime?: string;
20898
- /**
20899
- * @example
20900
- * 0
20901
- */
20902
- accountType?: number;
20903
- /**
20904
- * @example
20905
- * 2022-02-05
20906
- */
20907
- agreementFirstSignTime?: string;
20908
- /**
20909
- * @example
20910
- * 2022-02-06
20911
- */
20912
- agreementLastSignTime?: string;
20913
- /**
20914
- * @example
20915
- * 1
20916
- */
20917
- agreementStatus?: number;
20918
- /**
20919
- * @example
20920
- * 2022-02-04
20921
- */
20922
- dataHandleEndTime?: string;
20923
- /**
20924
- * @example
20925
- * 2022-02-03
20926
- */
20927
- dataHandleStartTime?: string;
20928
- /**
20929
- * @example
20930
- * 1
20931
- */
20932
- dataHandleStatus?: number;
20933
- /**
20934
- * @example
20935
- * 1
20936
- */
20937
- exclusivePlan?: number;
20938
- /**
20939
- * @example
20940
- * 1
20941
- */
20942
- newAccountUid?: number;
21112
+ export class GetUserIdByOrgIdAndStaffIdResponseBody extends $tea.Model {
20943
21113
  /**
20944
21114
  * @example
20945
21115
  * 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
@@ -20947,9 +21117,9 @@ export class GetUserLatestPlanResponseBody extends $tea.Model {
20947
21117
  requestId?: string;
20948
21118
  /**
20949
21119
  * @example
20950
- * 0
21120
+ * 01223245436
20951
21121
  */
20952
- status?: number;
21122
+ userId?: string;
20953
21123
  /**
20954
21124
  * @example
20955
21125
  * 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
@@ -20962,19 +21132,8 @@ export class GetUserLatestPlanResponseBody extends $tea.Model {
20962
21132
  vendorType?: string;
20963
21133
  static names(): { [key: string]: string } {
20964
21134
  return {
20965
- accountHandleStatus: 'accountHandleStatus',
20966
- accountHandleTime: 'accountHandleTime',
20967
- accountType: 'accountType',
20968
- agreementFirstSignTime: 'agreementFirstSignTime',
20969
- agreementLastSignTime: 'agreementLastSignTime',
20970
- agreementStatus: 'agreementStatus',
20971
- dataHandleEndTime: 'dataHandleEndTime',
20972
- dataHandleStartTime: 'dataHandleStartTime',
20973
- dataHandleStatus: 'dataHandleStatus',
20974
- exclusivePlan: 'exclusivePlan',
20975
- newAccountUid: 'newAccountUid',
20976
21135
  requestId: 'requestId',
20977
- status: 'status',
21136
+ userId: 'userId',
20978
21137
  vendorRequestId: 'vendorRequestId',
20979
21138
  vendorType: 'vendorType',
20980
21139
  };
@@ -20982,19 +21141,8 @@ export class GetUserLatestPlanResponseBody extends $tea.Model {
20982
21141
 
20983
21142
  static types(): { [key: string]: any } {
20984
21143
  return {
20985
- accountHandleStatus: 'number',
20986
- accountHandleTime: 'string',
20987
- accountType: 'number',
20988
- agreementFirstSignTime: 'string',
20989
- agreementLastSignTime: 'string',
20990
- agreementStatus: 'number',
20991
- dataHandleEndTime: 'string',
20992
- dataHandleStartTime: 'string',
20993
- dataHandleStatus: 'number',
20994
- exclusivePlan: 'number',
20995
- newAccountUid: 'number',
20996
21144
  requestId: 'string',
20997
- status: 'number',
21145
+ userId: 'string',
20998
21146
  vendorRequestId: 'string',
20999
21147
  vendorType: 'string',
21000
21148
  };
@@ -21005,10 +21153,10 @@ export class GetUserLatestPlanResponseBody extends $tea.Model {
21005
21153
  }
21006
21154
  }
21007
21155
 
21008
- export class GetUserLatestPlanResponse extends $tea.Model {
21156
+ export class GetUserIdByOrgIdAndStaffIdResponse extends $tea.Model {
21009
21157
  headers?: { [key: string]: string };
21010
21158
  statusCode?: number;
21011
- body?: GetUserLatestPlanResponseBody;
21159
+ body?: GetUserIdByOrgIdAndStaffIdResponseBody;
21012
21160
  static names(): { [key: string]: string } {
21013
21161
  return {
21014
21162
  headers: 'headers',
@@ -21021,7 +21169,7 @@ export class GetUserLatestPlanResponse extends $tea.Model {
21021
21169
  return {
21022
21170
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
21023
21171
  statusCode: 'number',
21024
- body: GetUserLatestPlanResponseBody,
21172
+ body: GetUserIdByOrgIdAndStaffIdResponseBody,
21025
21173
  };
21026
21174
  }
21027
21175
 
@@ -21030,9 +21178,9 @@ export class GetUserLatestPlanResponse extends $tea.Model {
21030
21178
  }
21031
21179
  }
21032
21180
 
21033
- export class GetWorkspaceHeaders extends $tea.Model {
21181
+ export class GetUserLatestPlanHeaders extends $tea.Model {
21034
21182
  commonHeaders?: { [key: string]: string };
21035
- accountContext?: GetWorkspaceHeadersAccountContext;
21183
+ accountContext?: GetUserLatestPlanHeadersAccountContext;
21036
21184
  static names(): { [key: string]: string } {
21037
21185
  return {
21038
21186
  commonHeaders: 'commonHeaders',
@@ -21043,7 +21191,7 @@ export class GetWorkspaceHeaders extends $tea.Model {
21043
21191
  static types(): { [key: string]: any } {
21044
21192
  return {
21045
21193
  commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
21046
- accountContext: GetWorkspaceHeadersAccountContext,
21194
+ accountContext: GetUserLatestPlanHeadersAccountContext,
21047
21195
  };
21048
21196
  }
21049
21197
 
@@ -21052,7 +21200,235 @@ export class GetWorkspaceHeaders extends $tea.Model {
21052
21200
  }
21053
21201
  }
21054
21202
 
21055
- export class GetWorkspaceShrinkHeaders extends $tea.Model {
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 {
21056
21432
  commonHeaders?: { [key: string]: string };
21057
21433
  accountContextShrink?: string;
21058
21434
  static names(): { [key: string]: string } {
@@ -24884,6 +25260,239 @@ export class ListTeamsResponse extends $tea.Model {
24884
25260
  }
24885
25261
  }
24886
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
+
24887
25496
  export class ListWorkspacesHeaders extends $tea.Model {
24888
25497
  commonHeaders?: { [key: string]: string };
24889
25498
  accountContext?: ListWorkspacesHeadersAccountContext;
@@ -27452,27 +28061,194 @@ export class QueryMeetingRoomGroupShrinkHeaders extends $tea.Model {
27452
28061
  }
27453
28062
  }
27454
28063
 
27455
- export class QueryMeetingRoomGroupRequest extends $tea.Model {
27456
- /**
27457
- * @remarks
27458
- * This parameter is required.
27459
- *
27460
- * @example
27461
- * 172
27462
- */
27463
- groupId?: string;
27464
- tenantContext?: QueryMeetingRoomGroupRequestTenantContext;
28064
+ export class QueryMeetingRoomGroupRequest extends $tea.Model {
28065
+ /**
28066
+ * @remarks
28067
+ * This parameter is required.
28068
+ *
28069
+ * @example
28070
+ * 172
28071
+ */
28072
+ groupId?: string;
28073
+ tenantContext?: QueryMeetingRoomGroupRequestTenantContext;
28074
+ static names(): { [key: string]: string } {
28075
+ return {
28076
+ groupId: 'GroupId',
28077
+ tenantContext: 'TenantContext',
28078
+ };
28079
+ }
28080
+
28081
+ static types(): { [key: string]: any } {
28082
+ return {
28083
+ groupId: 'string',
28084
+ tenantContext: QueryMeetingRoomGroupRequestTenantContext,
28085
+ };
28086
+ }
28087
+
28088
+ constructor(map?: { [key: string]: any }) {
28089
+ super(map);
28090
+ }
28091
+ }
28092
+
28093
+ export class QueryMeetingRoomGroupShrinkRequest extends $tea.Model {
28094
+ /**
28095
+ * @remarks
28096
+ * This parameter is required.
28097
+ *
28098
+ * @example
28099
+ * 172
28100
+ */
28101
+ groupId?: string;
28102
+ tenantContextShrink?: string;
28103
+ static names(): { [key: string]: string } {
28104
+ return {
28105
+ groupId: 'GroupId',
28106
+ tenantContextShrink: 'TenantContext',
28107
+ };
28108
+ }
28109
+
28110
+ static types(): { [key: string]: any } {
28111
+ return {
28112
+ groupId: 'string',
28113
+ tenantContextShrink: 'string',
28114
+ };
28115
+ }
28116
+
28117
+ constructor(map?: { [key: string]: any }) {
28118
+ super(map);
28119
+ }
28120
+ }
28121
+
28122
+ export class QueryMeetingRoomGroupResponseBody extends $tea.Model {
28123
+ /**
28124
+ * @example
28125
+ * 172
28126
+ */
28127
+ groupId?: number;
28128
+ /**
28129
+ * @example
28130
+ * 测试分组
28131
+ */
28132
+ groupName?: string;
28133
+ /**
28134
+ * @example
28135
+ * 0
28136
+ */
28137
+ parentId?: number;
28138
+ /**
28139
+ * @remarks
28140
+ * requestId
28141
+ *
28142
+ * @example
28143
+ * 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
28144
+ */
28145
+ requestId?: string;
28146
+ static names(): { [key: string]: string } {
28147
+ return {
28148
+ groupId: 'groupId',
28149
+ groupName: 'groupName',
28150
+ parentId: 'parentId',
28151
+ requestId: 'requestId',
28152
+ };
28153
+ }
28154
+
28155
+ static types(): { [key: string]: any } {
28156
+ return {
28157
+ groupId: 'number',
28158
+ groupName: 'string',
28159
+ parentId: 'number',
28160
+ requestId: 'string',
28161
+ };
28162
+ }
28163
+
28164
+ constructor(map?: { [key: string]: any }) {
28165
+ super(map);
28166
+ }
28167
+ }
28168
+
28169
+ export class QueryMeetingRoomGroupResponse extends $tea.Model {
28170
+ headers?: { [key: string]: string };
28171
+ statusCode?: number;
28172
+ body?: QueryMeetingRoomGroupResponseBody;
28173
+ static names(): { [key: string]: string } {
28174
+ return {
28175
+ headers: 'headers',
28176
+ statusCode: 'statusCode',
28177
+ body: 'body',
28178
+ };
28179
+ }
28180
+
28181
+ static types(): { [key: string]: any } {
28182
+ return {
28183
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
28184
+ statusCode: 'number',
28185
+ body: QueryMeetingRoomGroupResponseBody,
28186
+ };
28187
+ }
28188
+
28189
+ constructor(map?: { [key: string]: any }) {
28190
+ super(map);
28191
+ }
28192
+ }
28193
+
28194
+ export class QueryMeetingRoomGroupListHeaders extends $tea.Model {
28195
+ commonHeaders?: { [key: string]: string };
28196
+ accountContext?: QueryMeetingRoomGroupListHeadersAccountContext;
28197
+ static names(): { [key: string]: string } {
28198
+ return {
28199
+ commonHeaders: 'commonHeaders',
28200
+ accountContext: 'AccountContext',
28201
+ };
28202
+ }
28203
+
28204
+ static types(): { [key: string]: any } {
28205
+ return {
28206
+ commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
28207
+ accountContext: QueryMeetingRoomGroupListHeadersAccountContext,
28208
+ };
28209
+ }
28210
+
28211
+ constructor(map?: { [key: string]: any }) {
28212
+ super(map);
28213
+ }
28214
+ }
28215
+
28216
+ export class QueryMeetingRoomGroupListShrinkHeaders extends $tea.Model {
28217
+ commonHeaders?: { [key: string]: string };
28218
+ accountContextShrink?: string;
28219
+ static names(): { [key: string]: string } {
28220
+ return {
28221
+ commonHeaders: 'commonHeaders',
28222
+ accountContextShrink: 'AccountContext',
28223
+ };
28224
+ }
28225
+
28226
+ static types(): { [key: string]: any } {
28227
+ return {
28228
+ commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
28229
+ accountContextShrink: 'string',
28230
+ };
28231
+ }
28232
+
28233
+ constructor(map?: { [key: string]: any }) {
28234
+ super(map);
28235
+ }
28236
+ }
28237
+
28238
+ export class QueryMeetingRoomGroupListRequest extends $tea.Model {
28239
+ request?: { [key: string]: any };
28240
+ tenantContext?: QueryMeetingRoomGroupListRequestTenantContext;
27465
28241
  static names(): { [key: string]: string } {
27466
28242
  return {
27467
- groupId: 'GroupId',
28243
+ request: 'Request',
27468
28244
  tenantContext: 'TenantContext',
27469
28245
  };
27470
28246
  }
27471
28247
 
27472
28248
  static types(): { [key: string]: any } {
27473
28249
  return {
27474
- groupId: 'string',
27475
- tenantContext: QueryMeetingRoomGroupRequestTenantContext,
28250
+ request: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
28251
+ tenantContext: QueryMeetingRoomGroupListRequestTenantContext,
27476
28252
  };
27477
28253
  }
27478
28254
 
@@ -27481,26 +28257,19 @@ export class QueryMeetingRoomGroupRequest extends $tea.Model {
27481
28257
  }
27482
28258
  }
27483
28259
 
27484
- export class QueryMeetingRoomGroupShrinkRequest extends $tea.Model {
27485
- /**
27486
- * @remarks
27487
- * This parameter is required.
27488
- *
27489
- * @example
27490
- * 172
27491
- */
27492
- groupId?: string;
28260
+ export class QueryMeetingRoomGroupListShrinkRequest extends $tea.Model {
28261
+ requestShrink?: string;
27493
28262
  tenantContextShrink?: string;
27494
28263
  static names(): { [key: string]: string } {
27495
28264
  return {
27496
- groupId: 'GroupId',
28265
+ requestShrink: 'Request',
27497
28266
  tenantContextShrink: 'TenantContext',
27498
28267
  };
27499
28268
  }
27500
28269
 
27501
28270
  static types(): { [key: string]: any } {
27502
28271
  return {
27503
- groupId: 'string',
28272
+ requestShrink: 'string',
27504
28273
  tenantContextShrink: 'string',
27505
28274
  };
27506
28275
  }
@@ -27510,22 +28279,7 @@ export class QueryMeetingRoomGroupShrinkRequest extends $tea.Model {
27510
28279
  }
27511
28280
  }
27512
28281
 
27513
- export class QueryMeetingRoomGroupResponseBody extends $tea.Model {
27514
- /**
27515
- * @example
27516
- * 172
27517
- */
27518
- groupId?: number;
27519
- /**
27520
- * @example
27521
- * 测试分组
27522
- */
27523
- groupName?: string;
27524
- /**
27525
- * @example
27526
- * 0
27527
- */
27528
- parentId?: number;
28282
+ export class QueryMeetingRoomGroupListResponseBody extends $tea.Model {
27529
28283
  /**
27530
28284
  * @remarks
27531
28285
  * requestId
@@ -27534,21 +28288,18 @@ export class QueryMeetingRoomGroupResponseBody extends $tea.Model {
27534
28288
  * 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
27535
28289
  */
27536
28290
  requestId?: string;
28291
+ result?: QueryMeetingRoomGroupListResponseBodyResult[];
27537
28292
  static names(): { [key: string]: string } {
27538
28293
  return {
27539
- groupId: 'groupId',
27540
- groupName: 'groupName',
27541
- parentId: 'parentId',
27542
28294
  requestId: 'requestId',
28295
+ result: 'result',
27543
28296
  };
27544
28297
  }
27545
28298
 
27546
28299
  static types(): { [key: string]: any } {
27547
28300
  return {
27548
- groupId: 'number',
27549
- groupName: 'string',
27550
- parentId: 'number',
27551
28301
  requestId: 'string',
28302
+ result: { 'type': 'array', 'itemType': QueryMeetingRoomGroupListResponseBodyResult },
27552
28303
  };
27553
28304
  }
27554
28305
 
@@ -27557,10 +28308,10 @@ export class QueryMeetingRoomGroupResponseBody extends $tea.Model {
27557
28308
  }
27558
28309
  }
27559
28310
 
27560
- export class QueryMeetingRoomGroupResponse extends $tea.Model {
28311
+ export class QueryMeetingRoomGroupListResponse extends $tea.Model {
27561
28312
  headers?: { [key: string]: string };
27562
28313
  statusCode?: number;
27563
- body?: QueryMeetingRoomGroupResponseBody;
28314
+ body?: QueryMeetingRoomGroupListResponseBody;
27564
28315
  static names(): { [key: string]: string } {
27565
28316
  return {
27566
28317
  headers: 'headers',
@@ -27573,7 +28324,7 @@ export class QueryMeetingRoomGroupResponse extends $tea.Model {
27573
28324
  return {
27574
28325
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
27575
28326
  statusCode: 'number',
27576
- body: QueryMeetingRoomGroupResponseBody,
28327
+ body: QueryMeetingRoomGroupListResponseBody,
27577
28328
  };
27578
28329
  }
27579
28330
 
@@ -27582,9 +28333,9 @@ export class QueryMeetingRoomGroupResponse extends $tea.Model {
27582
28333
  }
27583
28334
  }
27584
28335
 
27585
- export class QueryMeetingRoomGroupListHeaders extends $tea.Model {
28336
+ export class QueryMeetingRoomListHeaders extends $tea.Model {
27586
28337
  commonHeaders?: { [key: string]: string };
27587
- accountContext?: QueryMeetingRoomGroupListHeadersAccountContext;
28338
+ accountContext?: QueryMeetingRoomListHeadersAccountContext;
27588
28339
  static names(): { [key: string]: string } {
27589
28340
  return {
27590
28341
  commonHeaders: 'commonHeaders',
@@ -27595,7 +28346,7 @@ export class QueryMeetingRoomGroupListHeaders extends $tea.Model {
27595
28346
  static types(): { [key: string]: any } {
27596
28347
  return {
27597
28348
  commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
27598
- accountContext: QueryMeetingRoomGroupListHeadersAccountContext,
28349
+ accountContext: QueryMeetingRoomListHeadersAccountContext,
27599
28350
  };
27600
28351
  }
27601
28352
 
@@ -27604,7 +28355,7 @@ export class QueryMeetingRoomGroupListHeaders extends $tea.Model {
27604
28355
  }
27605
28356
  }
27606
28357
 
27607
- export class QueryMeetingRoomGroupListShrinkHeaders extends $tea.Model {
28358
+ export class QueryMeetingRoomListShrinkHeaders extends $tea.Model {
27608
28359
  commonHeaders?: { [key: string]: string };
27609
28360
  accountContextShrink?: string;
27610
28361
  static names(): { [key: string]: string } {
@@ -27626,20 +28377,31 @@ export class QueryMeetingRoomGroupListShrinkHeaders extends $tea.Model {
27626
28377
  }
27627
28378
  }
27628
28379
 
27629
- export class QueryMeetingRoomGroupListRequest extends $tea.Model {
27630
- request?: { [key: string]: any };
27631
- tenantContext?: QueryMeetingRoomGroupListRequestTenantContext;
28380
+ export class QueryMeetingRoomListRequest extends $tea.Model {
28381
+ /**
28382
+ * @example
28383
+ * 20
28384
+ */
28385
+ maxResults?: number;
28386
+ /**
28387
+ * @example
28388
+ * 124L
28389
+ */
28390
+ nextToken?: number;
28391
+ tenantContext?: QueryMeetingRoomListRequestTenantContext;
27632
28392
  static names(): { [key: string]: string } {
27633
28393
  return {
27634
- request: 'Request',
28394
+ maxResults: 'MaxResults',
28395
+ nextToken: 'NextToken',
27635
28396
  tenantContext: 'TenantContext',
27636
28397
  };
27637
28398
  }
27638
28399
 
27639
28400
  static types(): { [key: string]: any } {
27640
28401
  return {
27641
- request: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
27642
- tenantContext: QueryMeetingRoomGroupListRequestTenantContext,
28402
+ maxResults: 'number',
28403
+ nextToken: 'number',
28404
+ tenantContext: QueryMeetingRoomListRequestTenantContext,
27643
28405
  };
27644
28406
  }
27645
28407
 
@@ -27648,19 +28410,30 @@ export class QueryMeetingRoomGroupListRequest extends $tea.Model {
27648
28410
  }
27649
28411
  }
27650
28412
 
27651
- export class QueryMeetingRoomGroupListShrinkRequest extends $tea.Model {
27652
- requestShrink?: string;
28413
+ export class QueryMeetingRoomListShrinkRequest extends $tea.Model {
28414
+ /**
28415
+ * @example
28416
+ * 20
28417
+ */
28418
+ maxResults?: number;
28419
+ /**
28420
+ * @example
28421
+ * 124L
28422
+ */
28423
+ nextToken?: number;
27653
28424
  tenantContextShrink?: string;
27654
28425
  static names(): { [key: string]: string } {
27655
28426
  return {
27656
- requestShrink: 'Request',
28427
+ maxResults: 'MaxResults',
28428
+ nextToken: 'NextToken',
27657
28429
  tenantContextShrink: 'TenantContext',
27658
28430
  };
27659
28431
  }
27660
28432
 
27661
28433
  static types(): { [key: string]: any } {
27662
28434
  return {
27663
- requestShrink: 'string',
28435
+ maxResults: 'number',
28436
+ nextToken: 'number',
27664
28437
  tenantContextShrink: 'string',
27665
28438
  };
27666
28439
  }
@@ -27670,7 +28443,17 @@ export class QueryMeetingRoomGroupListShrinkRequest extends $tea.Model {
27670
28443
  }
27671
28444
  }
27672
28445
 
27673
- export class QueryMeetingRoomGroupListResponseBody extends $tea.Model {
28446
+ export class QueryMeetingRoomListResponseBody extends $tea.Model {
28447
+ /**
28448
+ * @example
28449
+ * true
28450
+ */
28451
+ hasMore?: boolean;
28452
+ /**
28453
+ * @example
28454
+ * 123
28455
+ */
28456
+ nextToken?: number;
27674
28457
  /**
27675
28458
  * @remarks
27676
28459
  * requestId
@@ -27679,9 +28462,11 @@ export class QueryMeetingRoomGroupListResponseBody extends $tea.Model {
27679
28462
  * 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
27680
28463
  */
27681
28464
  requestId?: string;
27682
- result?: QueryMeetingRoomGroupListResponseBodyResult[];
28465
+ result?: QueryMeetingRoomListResponseBodyResult[];
27683
28466
  static names(): { [key: string]: string } {
27684
28467
  return {
28468
+ hasMore: 'hasMore',
28469
+ nextToken: 'nextToken',
27685
28470
  requestId: 'requestId',
27686
28471
  result: 'result',
27687
28472
  };
@@ -27689,8 +28474,10 @@ export class QueryMeetingRoomGroupListResponseBody extends $tea.Model {
27689
28474
 
27690
28475
  static types(): { [key: string]: any } {
27691
28476
  return {
28477
+ hasMore: 'boolean',
28478
+ nextToken: 'number',
27692
28479
  requestId: 'string',
27693
- result: { 'type': 'array', 'itemType': QueryMeetingRoomGroupListResponseBodyResult },
28480
+ result: { 'type': 'array', 'itemType': QueryMeetingRoomListResponseBodyResult },
27694
28481
  };
27695
28482
  }
27696
28483
 
@@ -27699,10 +28486,10 @@ export class QueryMeetingRoomGroupListResponseBody extends $tea.Model {
27699
28486
  }
27700
28487
  }
27701
28488
 
27702
- export class QueryMeetingRoomGroupListResponse extends $tea.Model {
28489
+ export class QueryMeetingRoomListResponse extends $tea.Model {
27703
28490
  headers?: { [key: string]: string };
27704
28491
  statusCode?: number;
27705
- body?: QueryMeetingRoomGroupListResponseBody;
28492
+ body?: QueryMeetingRoomListResponseBody;
27706
28493
  static names(): { [key: string]: string } {
27707
28494
  return {
27708
28495
  headers: 'headers',
@@ -27715,7 +28502,7 @@ export class QueryMeetingRoomGroupListResponse extends $tea.Model {
27715
28502
  return {
27716
28503
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
27717
28504
  statusCode: 'number',
27718
- body: QueryMeetingRoomGroupListResponseBody,
28505
+ body: QueryMeetingRoomListResponseBody,
27719
28506
  };
27720
28507
  }
27721
28508
 
@@ -27724,9 +28511,9 @@ export class QueryMeetingRoomGroupListResponse extends $tea.Model {
27724
28511
  }
27725
28512
  }
27726
28513
 
27727
- export class QueryMeetingRoomListHeaders extends $tea.Model {
28514
+ export class QueryMinutesHeaders extends $tea.Model {
27728
28515
  commonHeaders?: { [key: string]: string };
27729
- accountContext?: QueryMeetingRoomListHeadersAccountContext;
28516
+ accountContext?: QueryMinutesHeadersAccountContext;
27730
28517
  static names(): { [key: string]: string } {
27731
28518
  return {
27732
28519
  commonHeaders: 'commonHeaders',
@@ -27737,7 +28524,7 @@ export class QueryMeetingRoomListHeaders extends $tea.Model {
27737
28524
  static types(): { [key: string]: any } {
27738
28525
  return {
27739
28526
  commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
27740
- accountContext: QueryMeetingRoomListHeadersAccountContext,
28527
+ accountContext: QueryMinutesHeadersAccountContext,
27741
28528
  };
27742
28529
  }
27743
28530
 
@@ -27746,7 +28533,7 @@ export class QueryMeetingRoomListHeaders extends $tea.Model {
27746
28533
  }
27747
28534
  }
27748
28535
 
27749
- export class QueryMeetingRoomListShrinkHeaders extends $tea.Model {
28536
+ export class QueryMinutesShrinkHeaders extends $tea.Model {
27750
28537
  commonHeaders?: { [key: string]: string };
27751
28538
  accountContextShrink?: string;
27752
28539
  static names(): { [key: string]: string } {
@@ -27768,31 +28555,27 @@ export class QueryMeetingRoomListShrinkHeaders extends $tea.Model {
27768
28555
  }
27769
28556
  }
27770
28557
 
27771
- export class QueryMeetingRoomListRequest extends $tea.Model {
27772
- /**
27773
- * @example
27774
- * 20
27775
- */
27776
- maxResults?: number;
28558
+ export class QueryMinutesRequest extends $tea.Model {
28559
+ tenantContext?: QueryMinutesRequestTenantContext;
27777
28560
  /**
28561
+ * @remarks
28562
+ * This parameter is required.
28563
+ *
27778
28564
  * @example
27779
- * 124L
28565
+ * 61289fxxx
27780
28566
  */
27781
- nextToken?: number;
27782
- tenantContext?: QueryMeetingRoomListRequestTenantContext;
28567
+ conferenceId?: string;
27783
28568
  static names(): { [key: string]: string } {
27784
28569
  return {
27785
- maxResults: 'MaxResults',
27786
- nextToken: 'NextToken',
27787
28570
  tenantContext: 'TenantContext',
28571
+ conferenceId: 'conferenceId',
27788
28572
  };
27789
28573
  }
27790
28574
 
27791
28575
  static types(): { [key: string]: any } {
27792
28576
  return {
27793
- maxResults: 'number',
27794
- nextToken: 'number',
27795
- tenantContext: QueryMeetingRoomListRequestTenantContext,
28577
+ tenantContext: QueryMinutesRequestTenantContext,
28578
+ conferenceId: 'string',
27796
28579
  };
27797
28580
  }
27798
28581
 
@@ -27801,31 +28584,27 @@ export class QueryMeetingRoomListRequest extends $tea.Model {
27801
28584
  }
27802
28585
  }
27803
28586
 
27804
- export class QueryMeetingRoomListShrinkRequest extends $tea.Model {
27805
- /**
27806
- * @example
27807
- * 20
27808
- */
27809
- maxResults?: number;
28587
+ export class QueryMinutesShrinkRequest extends $tea.Model {
28588
+ tenantContextShrink?: string;
27810
28589
  /**
28590
+ * @remarks
28591
+ * This parameter is required.
28592
+ *
27811
28593
  * @example
27812
- * 124L
28594
+ * 61289fxxx
27813
28595
  */
27814
- nextToken?: number;
27815
- tenantContextShrink?: string;
28596
+ conferenceId?: string;
27816
28597
  static names(): { [key: string]: string } {
27817
28598
  return {
27818
- maxResults: 'MaxResults',
27819
- nextToken: 'NextToken',
27820
28599
  tenantContextShrink: 'TenantContext',
28600
+ conferenceId: 'conferenceId',
27821
28601
  };
27822
28602
  }
27823
28603
 
27824
28604
  static types(): { [key: string]: any } {
27825
28605
  return {
27826
- maxResults: 'number',
27827
- nextToken: 'number',
27828
28606
  tenantContextShrink: 'string',
28607
+ conferenceId: 'string',
27829
28608
  };
27830
28609
  }
27831
28610
 
@@ -27834,41 +28613,38 @@ export class QueryMeetingRoomListShrinkRequest extends $tea.Model {
27834
28613
  }
27835
28614
  }
27836
28615
 
27837
- export class QueryMeetingRoomListResponseBody extends $tea.Model {
28616
+ export class QueryMinutesResponseBody extends $tea.Model {
28617
+ audioList?: QueryMinutesResponseBodyAudioList[];
27838
28618
  /**
27839
28619
  * @example
27840
- * true
28620
+ * 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
27841
28621
  */
27842
- hasMore?: boolean;
28622
+ requestId?: string;
27843
28623
  /**
27844
28624
  * @example
27845
- * 123
28625
+ * 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
27846
28626
  */
27847
- nextToken?: number;
28627
+ vendorRequestId?: string;
27848
28628
  /**
27849
- * @remarks
27850
- * requestId
27851
- *
27852
28629
  * @example
27853
- * 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
28630
+ * dingtalk
27854
28631
  */
27855
- requestId?: string;
27856
- result?: QueryMeetingRoomListResponseBodyResult[];
28632
+ vendorType?: string;
27857
28633
  static names(): { [key: string]: string } {
27858
28634
  return {
27859
- hasMore: 'hasMore',
27860
- nextToken: 'nextToken',
28635
+ audioList: 'audioList',
27861
28636
  requestId: 'requestId',
27862
- result: 'result',
28637
+ vendorRequestId: 'vendorRequestId',
28638
+ vendorType: 'vendorType',
27863
28639
  };
27864
28640
  }
27865
28641
 
27866
28642
  static types(): { [key: string]: any } {
27867
28643
  return {
27868
- hasMore: 'boolean',
27869
- nextToken: 'number',
28644
+ audioList: { 'type': 'array', 'itemType': QueryMinutesResponseBodyAudioList },
27870
28645
  requestId: 'string',
27871
- result: { 'type': 'array', 'itemType': QueryMeetingRoomListResponseBodyResult },
28646
+ vendorRequestId: 'string',
28647
+ vendorType: 'string',
27872
28648
  };
27873
28649
  }
27874
28650
 
@@ -27877,10 +28653,10 @@ export class QueryMeetingRoomListResponseBody extends $tea.Model {
27877
28653
  }
27878
28654
  }
27879
28655
 
27880
- export class QueryMeetingRoomListResponse extends $tea.Model {
28656
+ export class QueryMinutesResponse extends $tea.Model {
27881
28657
  headers?: { [key: string]: string };
27882
28658
  statusCode?: number;
27883
- body?: QueryMeetingRoomListResponseBody;
28659
+ body?: QueryMinutesResponseBody;
27884
28660
  static names(): { [key: string]: string } {
27885
28661
  return {
27886
28662
  headers: 'headers',
@@ -27893,7 +28669,7 @@ export class QueryMeetingRoomListResponse extends $tea.Model {
27893
28669
  return {
27894
28670
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
27895
28671
  statusCode: 'number',
27896
- body: QueryMeetingRoomListResponseBody,
28672
+ body: QueryMinutesResponseBody,
27897
28673
  };
27898
28674
  }
27899
28675
 
@@ -27902,9 +28678,9 @@ export class QueryMeetingRoomListResponse extends $tea.Model {
27902
28678
  }
27903
28679
  }
27904
28680
 
27905
- export class QueryMinutesHeaders extends $tea.Model {
28681
+ export class QueryMinutesSummaryHeaders extends $tea.Model {
27906
28682
  commonHeaders?: { [key: string]: string };
27907
- accountContext?: QueryMinutesHeadersAccountContext;
28683
+ accountContext?: QueryMinutesSummaryHeadersAccountContext;
27908
28684
  static names(): { [key: string]: string } {
27909
28685
  return {
27910
28686
  commonHeaders: 'commonHeaders',
@@ -27915,7 +28691,7 @@ export class QueryMinutesHeaders extends $tea.Model {
27915
28691
  static types(): { [key: string]: any } {
27916
28692
  return {
27917
28693
  commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
27918
- accountContext: QueryMinutesHeadersAccountContext,
28694
+ accountContext: QueryMinutesSummaryHeadersAccountContext,
27919
28695
  };
27920
28696
  }
27921
28697
 
@@ -27924,7 +28700,7 @@ export class QueryMinutesHeaders extends $tea.Model {
27924
28700
  }
27925
28701
  }
27926
28702
 
27927
- export class QueryMinutesShrinkHeaders extends $tea.Model {
28703
+ export class QueryMinutesSummaryShrinkHeaders extends $tea.Model {
27928
28704
  commonHeaders?: { [key: string]: string };
27929
28705
  accountContextShrink?: string;
27930
28706
  static names(): { [key: string]: string } {
@@ -27946,27 +28722,30 @@ export class QueryMinutesShrinkHeaders extends $tea.Model {
27946
28722
  }
27947
28723
  }
27948
28724
 
27949
- export class QueryMinutesRequest extends $tea.Model {
27950
- tenantContext?: QueryMinutesRequestTenantContext;
28725
+ export class QueryMinutesSummaryRequest extends $tea.Model {
28726
+ tenantContext?: QueryMinutesSummaryRequestTenantContext;
27951
28727
  /**
27952
28728
  * @remarks
27953
28729
  * This parameter is required.
27954
28730
  *
27955
28731
  * @example
27956
- * 61289fxxx
28732
+ * 607452e01401526ee39609e1
27957
28733
  */
27958
28734
  conferenceId?: string;
28735
+ summaryTypeList?: string[];
27959
28736
  static names(): { [key: string]: string } {
27960
28737
  return {
27961
28738
  tenantContext: 'TenantContext',
27962
28739
  conferenceId: 'conferenceId',
28740
+ summaryTypeList: 'summaryTypeList',
27963
28741
  };
27964
28742
  }
27965
28743
 
27966
28744
  static types(): { [key: string]: any } {
27967
28745
  return {
27968
- tenantContext: QueryMinutesRequestTenantContext,
28746
+ tenantContext: QueryMinutesSummaryRequestTenantContext,
27969
28747
  conferenceId: 'string',
28748
+ summaryTypeList: { 'type': 'array', 'itemType': 'string' },
27970
28749
  };
27971
28750
  }
27972
28751
 
@@ -27975,20 +28754,22 @@ export class QueryMinutesRequest extends $tea.Model {
27975
28754
  }
27976
28755
  }
27977
28756
 
27978
- export class QueryMinutesShrinkRequest extends $tea.Model {
28757
+ export class QueryMinutesSummaryShrinkRequest extends $tea.Model {
27979
28758
  tenantContextShrink?: string;
27980
28759
  /**
27981
28760
  * @remarks
27982
28761
  * This parameter is required.
27983
28762
  *
27984
28763
  * @example
27985
- * 61289fxxx
28764
+ * 607452e01401526ee39609e1
27986
28765
  */
27987
28766
  conferenceId?: string;
28767
+ summaryTypeListShrink?: string;
27988
28768
  static names(): { [key: string]: string } {
27989
28769
  return {
27990
28770
  tenantContextShrink: 'TenantContext',
27991
28771
  conferenceId: 'conferenceId',
28772
+ summaryTypeListShrink: 'summaryTypeList',
27992
28773
  };
27993
28774
  }
27994
28775
 
@@ -27996,6 +28777,7 @@ export class QueryMinutesShrinkRequest extends $tea.Model {
27996
28777
  return {
27997
28778
  tenantContextShrink: 'string',
27998
28779
  conferenceId: 'string',
28780
+ summaryTypeListShrink: 'string',
27999
28781
  };
28000
28782
  }
28001
28783
 
@@ -28004,13 +28786,13 @@ export class QueryMinutesShrinkRequest extends $tea.Model {
28004
28786
  }
28005
28787
  }
28006
28788
 
28007
- export class QueryMinutesResponseBody extends $tea.Model {
28008
- audioList?: QueryMinutesResponseBodyAudioList[];
28789
+ export class QueryMinutesSummaryResponseBody extends $tea.Model {
28009
28790
  /**
28010
28791
  * @example
28011
28792
  * 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
28012
28793
  */
28013
28794
  requestId?: string;
28795
+ summary?: QueryMinutesSummaryResponseBodySummary;
28014
28796
  /**
28015
28797
  * @example
28016
28798
  * 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
@@ -28023,8 +28805,8 @@ export class QueryMinutesResponseBody extends $tea.Model {
28023
28805
  vendorType?: string;
28024
28806
  static names(): { [key: string]: string } {
28025
28807
  return {
28026
- audioList: 'audioList',
28027
28808
  requestId: 'requestId',
28809
+ summary: 'summary',
28028
28810
  vendorRequestId: 'vendorRequestId',
28029
28811
  vendorType: 'vendorType',
28030
28812
  };
@@ -28032,8 +28814,8 @@ export class QueryMinutesResponseBody extends $tea.Model {
28032
28814
 
28033
28815
  static types(): { [key: string]: any } {
28034
28816
  return {
28035
- audioList: { 'type': 'array', 'itemType': QueryMinutesResponseBodyAudioList },
28036
28817
  requestId: 'string',
28818
+ summary: QueryMinutesSummaryResponseBodySummary,
28037
28819
  vendorRequestId: 'string',
28038
28820
  vendorType: 'string',
28039
28821
  };
@@ -28044,10 +28826,10 @@ export class QueryMinutesResponseBody extends $tea.Model {
28044
28826
  }
28045
28827
  }
28046
28828
 
28047
- export class QueryMinutesResponse extends $tea.Model {
28829
+ export class QueryMinutesSummaryResponse extends $tea.Model {
28048
28830
  headers?: { [key: string]: string };
28049
28831
  statusCode?: number;
28050
- body?: QueryMinutesResponseBody;
28832
+ body?: QueryMinutesSummaryResponseBody;
28051
28833
  static names(): { [key: string]: string } {
28052
28834
  return {
28053
28835
  headers: 'headers',
@@ -28060,7 +28842,7 @@ export class QueryMinutesResponse extends $tea.Model {
28060
28842
  return {
28061
28843
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
28062
28844
  statusCode: 'number',
28063
- body: QueryMinutesResponseBody,
28845
+ body: QueryMinutesSummaryResponseBody,
28064
28846
  };
28065
28847
  }
28066
28848
 
@@ -28069,9 +28851,9 @@ export class QueryMinutesResponse extends $tea.Model {
28069
28851
  }
28070
28852
  }
28071
28853
 
28072
- export class QueryMinutesSummaryHeaders extends $tea.Model {
28854
+ export class QueryMinutesTextHeaders extends $tea.Model {
28073
28855
  commonHeaders?: { [key: string]: string };
28074
- accountContext?: QueryMinutesSummaryHeadersAccountContext;
28856
+ accountContext?: QueryMinutesTextHeadersAccountContext;
28075
28857
  static names(): { [key: string]: string } {
28076
28858
  return {
28077
28859
  commonHeaders: 'commonHeaders',
@@ -28082,7 +28864,7 @@ export class QueryMinutesSummaryHeaders extends $tea.Model {
28082
28864
  static types(): { [key: string]: any } {
28083
28865
  return {
28084
28866
  commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
28085
- accountContext: QueryMinutesSummaryHeadersAccountContext,
28867
+ accountContext: QueryMinutesTextHeadersAccountContext,
28086
28868
  };
28087
28869
  }
28088
28870
 
@@ -28091,7 +28873,7 @@ export class QueryMinutesSummaryHeaders extends $tea.Model {
28091
28873
  }
28092
28874
  }
28093
28875
 
28094
- export class QueryMinutesSummaryShrinkHeaders extends $tea.Model {
28876
+ export class QueryMinutesTextShrinkHeaders extends $tea.Model {
28095
28877
  commonHeaders?: { [key: string]: string };
28096
28878
  accountContextShrink?: string;
28097
28879
  static names(): { [key: string]: string } {
@@ -28113,8 +28895,8 @@ export class QueryMinutesSummaryShrinkHeaders extends $tea.Model {
28113
28895
  }
28114
28896
  }
28115
28897
 
28116
- export class QueryMinutesSummaryRequest extends $tea.Model {
28117
- tenantContext?: QueryMinutesSummaryRequestTenantContext;
28898
+ export class QueryMinutesTextRequest extends $tea.Model {
28899
+ tenantContext?: QueryMinutesTextRequestTenantContext;
28118
28900
  /**
28119
28901
  * @remarks
28120
28902
  * This parameter is required.
@@ -28123,20 +28905,41 @@ export class QueryMinutesSummaryRequest extends $tea.Model {
28123
28905
  * 607452e01401526ee39609e1
28124
28906
  */
28125
28907
  conferenceId?: string;
28126
- summaryTypeList?: string[];
28908
+ /**
28909
+ * @remarks
28910
+ * This parameter is required.
28911
+ *
28912
+ * @example
28913
+ * 0
28914
+ */
28915
+ direction?: string;
28916
+ /**
28917
+ * @example
28918
+ * 20
28919
+ */
28920
+ maxResults?: number;
28921
+ /**
28922
+ * @example
28923
+ * 0
28924
+ */
28925
+ nextToken?: string;
28127
28926
  static names(): { [key: string]: string } {
28128
28927
  return {
28129
28928
  tenantContext: 'TenantContext',
28130
28929
  conferenceId: 'conferenceId',
28131
- summaryTypeList: 'summaryTypeList',
28930
+ direction: 'direction',
28931
+ maxResults: 'maxResults',
28932
+ nextToken: 'nextToken',
28132
28933
  };
28133
28934
  }
28134
28935
 
28135
28936
  static types(): { [key: string]: any } {
28136
28937
  return {
28137
- tenantContext: QueryMinutesSummaryRequestTenantContext,
28938
+ tenantContext: QueryMinutesTextRequestTenantContext,
28138
28939
  conferenceId: 'string',
28139
- summaryTypeList: { 'type': 'array', 'itemType': 'string' },
28940
+ direction: 'string',
28941
+ maxResults: 'number',
28942
+ nextToken: 'string',
28140
28943
  };
28141
28944
  }
28142
28945
 
@@ -28145,7 +28948,7 @@ export class QueryMinutesSummaryRequest extends $tea.Model {
28145
28948
  }
28146
28949
  }
28147
28950
 
28148
- export class QueryMinutesSummaryShrinkRequest extends $tea.Model {
28951
+ export class QueryMinutesTextShrinkRequest extends $tea.Model {
28149
28952
  tenantContextShrink?: string;
28150
28953
  /**
28151
28954
  * @remarks
@@ -28155,12 +28958,31 @@ export class QueryMinutesSummaryShrinkRequest extends $tea.Model {
28155
28958
  * 607452e01401526ee39609e1
28156
28959
  */
28157
28960
  conferenceId?: string;
28158
- summaryTypeListShrink?: string;
28961
+ /**
28962
+ * @remarks
28963
+ * This parameter is required.
28964
+ *
28965
+ * @example
28966
+ * 0
28967
+ */
28968
+ direction?: string;
28969
+ /**
28970
+ * @example
28971
+ * 20
28972
+ */
28973
+ maxResults?: number;
28974
+ /**
28975
+ * @example
28976
+ * 0
28977
+ */
28978
+ nextToken?: string;
28159
28979
  static names(): { [key: string]: string } {
28160
28980
  return {
28161
28981
  tenantContextShrink: 'TenantContext',
28162
28982
  conferenceId: 'conferenceId',
28163
- summaryTypeListShrink: 'summaryTypeList',
28983
+ direction: 'direction',
28984
+ maxResults: 'maxResults',
28985
+ nextToken: 'nextToken',
28164
28986
  };
28165
28987
  }
28166
28988
 
@@ -28168,7 +28990,9 @@ export class QueryMinutesSummaryShrinkRequest extends $tea.Model {
28168
28990
  return {
28169
28991
  tenantContextShrink: 'string',
28170
28992
  conferenceId: 'string',
28171
- summaryTypeListShrink: 'string',
28993
+ direction: 'string',
28994
+ maxResults: 'number',
28995
+ nextToken: 'string',
28172
28996
  };
28173
28997
  }
28174
28998
 
@@ -28177,13 +29001,23 @@ export class QueryMinutesSummaryShrinkRequest extends $tea.Model {
28177
29001
  }
28178
29002
  }
28179
29003
 
28180
- export class QueryMinutesSummaryResponseBody extends $tea.Model {
29004
+ export class QueryMinutesTextResponseBody extends $tea.Model {
29005
+ /**
29006
+ * @example
29007
+ * true
29008
+ */
29009
+ hasMore?: boolean;
29010
+ /**
29011
+ * @example
29012
+ * 0
29013
+ */
29014
+ nextToken?: string;
29015
+ paragraphList?: QueryMinutesTextResponseBodyParagraphList[];
28181
29016
  /**
28182
29017
  * @example
28183
29018
  * 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
28184
29019
  */
28185
29020
  requestId?: string;
28186
- summary?: QueryMinutesSummaryResponseBodySummary;
28187
29021
  /**
28188
29022
  * @example
28189
29023
  * 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
@@ -28196,8 +29030,10 @@ export class QueryMinutesSummaryResponseBody extends $tea.Model {
28196
29030
  vendorType?: string;
28197
29031
  static names(): { [key: string]: string } {
28198
29032
  return {
29033
+ hasMore: 'hasMore',
29034
+ nextToken: 'nextToken',
29035
+ paragraphList: 'paragraphList',
28199
29036
  requestId: 'requestId',
28200
- summary: 'summary',
28201
29037
  vendorRequestId: 'vendorRequestId',
28202
29038
  vendorType: 'vendorType',
28203
29039
  };
@@ -28205,8 +29041,10 @@ export class QueryMinutesSummaryResponseBody extends $tea.Model {
28205
29041
 
28206
29042
  static types(): { [key: string]: any } {
28207
29043
  return {
29044
+ hasMore: 'boolean',
29045
+ nextToken: 'string',
29046
+ paragraphList: { 'type': 'array', 'itemType': QueryMinutesTextResponseBodyParagraphList },
28208
29047
  requestId: 'string',
28209
- summary: QueryMinutesSummaryResponseBodySummary,
28210
29048
  vendorRequestId: 'string',
28211
29049
  vendorType: 'string',
28212
29050
  };
@@ -28217,10 +29055,10 @@ export class QueryMinutesSummaryResponseBody extends $tea.Model {
28217
29055
  }
28218
29056
  }
28219
29057
 
28220
- export class QueryMinutesSummaryResponse extends $tea.Model {
29058
+ export class QueryMinutesTextResponse extends $tea.Model {
28221
29059
  headers?: { [key: string]: string };
28222
29060
  statusCode?: number;
28223
- body?: QueryMinutesSummaryResponseBody;
29061
+ body?: QueryMinutesTextResponseBody;
28224
29062
  static names(): { [key: string]: string } {
28225
29063
  return {
28226
29064
  headers: 'headers',
@@ -28233,7 +29071,7 @@ export class QueryMinutesSummaryResponse extends $tea.Model {
28233
29071
  return {
28234
29072
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
28235
29073
  statusCode: 'number',
28236
- body: QueryMinutesSummaryResponseBody,
29074
+ body: QueryMinutesTextResponseBody,
28237
29075
  };
28238
29076
  }
28239
29077
 
@@ -28242,9 +29080,9 @@ export class QueryMinutesSummaryResponse extends $tea.Model {
28242
29080
  }
28243
29081
  }
28244
29082
 
28245
- export class QueryMinutesTextHeaders extends $tea.Model {
29083
+ export class QueryOrgHonorsHeaders extends $tea.Model {
28246
29084
  commonHeaders?: { [key: string]: string };
28247
- accountContext?: QueryMinutesTextHeadersAccountContext;
29085
+ accountContext?: QueryOrgHonorsHeadersAccountContext;
28248
29086
  static names(): { [key: string]: string } {
28249
29087
  return {
28250
29088
  commonHeaders: 'commonHeaders',
@@ -28255,7 +29093,7 @@ export class QueryMinutesTextHeaders extends $tea.Model {
28255
29093
  static types(): { [key: string]: any } {
28256
29094
  return {
28257
29095
  commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
28258
- accountContext: QueryMinutesTextHeadersAccountContext,
29096
+ accountContext: QueryOrgHonorsHeadersAccountContext,
28259
29097
  };
28260
29098
  }
28261
29099
 
@@ -28264,7 +29102,7 @@ export class QueryMinutesTextHeaders extends $tea.Model {
28264
29102
  }
28265
29103
  }
28266
29104
 
28267
- export class QueryMinutesTextShrinkHeaders extends $tea.Model {
29105
+ export class QueryOrgHonorsShrinkHeaders extends $tea.Model {
28268
29106
  commonHeaders?: { [key: string]: string };
28269
29107
  accountContextShrink?: string;
28270
29108
  static names(): { [key: string]: string } {
@@ -28286,51 +29124,44 @@ export class QueryMinutesTextShrinkHeaders extends $tea.Model {
28286
29124
  }
28287
29125
  }
28288
29126
 
28289
- export class QueryMinutesTextRequest extends $tea.Model {
28290
- tenantContext?: QueryMinutesTextRequestTenantContext;
29127
+ export class QueryOrgHonorsRequest extends $tea.Model {
29128
+ tenantContext?: QueryOrgHonorsRequestTenantContext;
28291
29129
  /**
28292
- * @remarks
28293
- * This parameter is required.
28294
- *
28295
29130
  * @example
28296
- * 607452e01401526ee39609e1
29131
+ * 48
28297
29132
  */
28298
- conferenceId?: string;
29133
+ maxResults?: number;
28299
29134
  /**
28300
29135
  * @remarks
28301
29136
  * This parameter is required.
28302
29137
  *
28303
29138
  * @example
28304
- * 0
28305
- */
28306
- direction?: string;
28307
- /**
28308
- * @example
28309
- * 20
29139
+ * 15
28310
29140
  */
28311
- maxResults?: number;
29141
+ nextToken?: string;
28312
29142
  /**
29143
+ * @remarks
29144
+ * This parameter is required.
29145
+ *
28313
29146
  * @example
28314
- * 0
29147
+ * 123456
28315
29148
  */
28316
- nextToken?: string;
29149
+ orgId?: number;
28317
29150
  static names(): { [key: string]: string } {
28318
29151
  return {
28319
29152
  tenantContext: 'TenantContext',
28320
- conferenceId: 'conferenceId',
28321
- direction: 'direction',
28322
29153
  maxResults: 'maxResults',
28323
29154
  nextToken: 'nextToken',
29155
+ orgId: 'orgId',
28324
29156
  };
28325
29157
  }
28326
29158
 
28327
29159
  static types(): { [key: string]: any } {
28328
29160
  return {
28329
- tenantContext: QueryMinutesTextRequestTenantContext,
28330
- conferenceId: 'string',
28331
- direction: 'string',
29161
+ tenantContext: QueryOrgHonorsRequestTenantContext,
28332
29162
  maxResults: 'number',
28333
29163
  nextToken: 'string',
29164
+ orgId: 'number',
28334
29165
  };
28335
29166
  }
28336
29167
 
@@ -28339,51 +29170,44 @@ export class QueryMinutesTextRequest extends $tea.Model {
28339
29170
  }
28340
29171
  }
28341
29172
 
28342
- export class QueryMinutesTextShrinkRequest extends $tea.Model {
29173
+ export class QueryOrgHonorsShrinkRequest extends $tea.Model {
28343
29174
  tenantContextShrink?: string;
28344
29175
  /**
28345
- * @remarks
28346
- * This parameter is required.
28347
- *
28348
29176
  * @example
28349
- * 607452e01401526ee39609e1
29177
+ * 48
28350
29178
  */
28351
- conferenceId?: string;
29179
+ maxResults?: number;
28352
29180
  /**
28353
29181
  * @remarks
28354
29182
  * This parameter is required.
28355
29183
  *
28356
29184
  * @example
28357
- * 0
28358
- */
28359
- direction?: string;
28360
- /**
28361
- * @example
28362
- * 20
29185
+ * 15
28363
29186
  */
28364
- maxResults?: number;
29187
+ nextToken?: string;
28365
29188
  /**
29189
+ * @remarks
29190
+ * This parameter is required.
29191
+ *
28366
29192
  * @example
28367
- * 0
29193
+ * 123456
28368
29194
  */
28369
- nextToken?: string;
29195
+ orgId?: number;
28370
29196
  static names(): { [key: string]: string } {
28371
29197
  return {
28372
29198
  tenantContextShrink: 'TenantContext',
28373
- conferenceId: 'conferenceId',
28374
- direction: 'direction',
28375
29199
  maxResults: 'maxResults',
28376
29200
  nextToken: 'nextToken',
29201
+ orgId: 'orgId',
28377
29202
  };
28378
29203
  }
28379
29204
 
28380
29205
  static types(): { [key: string]: any } {
28381
29206
  return {
28382
29207
  tenantContextShrink: 'string',
28383
- conferenceId: 'string',
28384
- direction: 'string',
28385
29208
  maxResults: 'number',
28386
29209
  nextToken: 'string',
29210
+ orgId: 'number',
28387
29211
  };
28388
29212
  }
28389
29213
 
@@ -28392,52 +29216,34 @@ export class QueryMinutesTextShrinkRequest extends $tea.Model {
28392
29216
  }
28393
29217
  }
28394
29218
 
28395
- export class QueryMinutesTextResponseBody extends $tea.Model {
28396
- /**
28397
- * @example
28398
- * true
28399
- */
28400
- hasMore?: boolean;
29219
+ export class QueryOrgHonorsResponseBody extends $tea.Model {
28401
29220
  /**
28402
29221
  * @example
28403
- * 0
29222
+ * 15
28404
29223
  */
28405
29224
  nextToken?: string;
28406
- paragraphList?: QueryMinutesTextResponseBodyParagraphList[];
29225
+ openHonors?: QueryOrgHonorsResponseBodyOpenHonors[];
28407
29226
  /**
29227
+ * @remarks
29228
+ * requestId
29229
+ *
28408
29230
  * @example
28409
29231
  * 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
28410
29232
  */
28411
29233
  requestId?: string;
28412
- /**
28413
- * @example
28414
- * 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
28415
- */
28416
- vendorRequestId?: string;
28417
- /**
28418
- * @example
28419
- * dingtalk
28420
- */
28421
- vendorType?: string;
28422
29234
  static names(): { [key: string]: string } {
28423
29235
  return {
28424
- hasMore: 'hasMore',
28425
29236
  nextToken: 'nextToken',
28426
- paragraphList: 'paragraphList',
29237
+ openHonors: 'openHonors',
28427
29238
  requestId: 'requestId',
28428
- vendorRequestId: 'vendorRequestId',
28429
- vendorType: 'vendorType',
28430
29239
  };
28431
29240
  }
28432
29241
 
28433
29242
  static types(): { [key: string]: any } {
28434
29243
  return {
28435
- hasMore: 'boolean',
28436
29244
  nextToken: 'string',
28437
- paragraphList: { 'type': 'array', 'itemType': QueryMinutesTextResponseBodyParagraphList },
29245
+ openHonors: { 'type': 'array', 'itemType': QueryOrgHonorsResponseBodyOpenHonors },
28438
29246
  requestId: 'string',
28439
- vendorRequestId: 'string',
28440
- vendorType: 'string',
28441
29247
  };
28442
29248
  }
28443
29249
 
@@ -28446,10 +29252,10 @@ export class QueryMinutesTextResponseBody extends $tea.Model {
28446
29252
  }
28447
29253
  }
28448
29254
 
28449
- export class QueryMinutesTextResponse extends $tea.Model {
29255
+ export class QueryOrgHonorsResponse extends $tea.Model {
28450
29256
  headers?: { [key: string]: string };
28451
29257
  statusCode?: number;
28452
- body?: QueryMinutesTextResponseBody;
29258
+ body?: QueryOrgHonorsResponseBody;
28453
29259
  static names(): { [key: string]: string } {
28454
29260
  return {
28455
29261
  headers: 'headers',
@@ -28462,7 +29268,7 @@ export class QueryMinutesTextResponse extends $tea.Model {
28462
29268
  return {
28463
29269
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
28464
29270
  statusCode: 'number',
28465
- body: QueryMinutesTextResponseBody,
29271
+ body: QueryOrgHonorsResponseBody,
28466
29272
  };
28467
29273
  }
28468
29274
 
@@ -28471,9 +29277,9 @@ export class QueryMinutesTextResponse extends $tea.Model {
28471
29277
  }
28472
29278
  }
28473
29279
 
28474
- export class QueryOrgHonorsHeaders extends $tea.Model {
29280
+ export class QueryOrgTodoTasksHeaders extends $tea.Model {
28475
29281
  commonHeaders?: { [key: string]: string };
28476
- accountContext?: QueryOrgHonorsHeadersAccountContext;
29282
+ accountContext?: QueryOrgTodoTasksHeadersAccountContext;
28477
29283
  static names(): { [key: string]: string } {
28478
29284
  return {
28479
29285
  commonHeaders: 'commonHeaders',
@@ -28484,7 +29290,7 @@ export class QueryOrgHonorsHeaders extends $tea.Model {
28484
29290
  static types(): { [key: string]: any } {
28485
29291
  return {
28486
29292
  commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
28487
- accountContext: QueryOrgHonorsHeadersAccountContext,
29293
+ accountContext: QueryOrgTodoTasksHeadersAccountContext,
28488
29294
  };
28489
29295
  }
28490
29296
 
@@ -28493,7 +29299,7 @@ export class QueryOrgHonorsHeaders extends $tea.Model {
28493
29299
  }
28494
29300
  }
28495
29301
 
28496
- export class QueryOrgHonorsShrinkHeaders extends $tea.Model {
29302
+ export class QueryOrgTodoTasksShrinkHeaders extends $tea.Model {
28497
29303
  commonHeaders?: { [key: string]: string };
28498
29304
  accountContextShrink?: string;
28499
29305
  static names(): { [key: string]: string } {
@@ -28515,44 +29321,31 @@ export class QueryOrgHonorsShrinkHeaders extends $tea.Model {
28515
29321
  }
28516
29322
  }
28517
29323
 
28518
- export class QueryOrgHonorsRequest extends $tea.Model {
28519
- tenantContext?: QueryOrgHonorsRequestTenantContext;
29324
+ export class QueryOrgTodoTasksRequest extends $tea.Model {
29325
+ tenantContext?: QueryOrgTodoTasksRequestTenantContext;
28520
29326
  /**
28521
29327
  * @example
28522
- * 48
29328
+ * true
28523
29329
  */
28524
- maxResults?: number;
29330
+ isDone?: boolean;
28525
29331
  /**
28526
- * @remarks
28527
- * This parameter is required.
28528
- *
28529
29332
  * @example
28530
- * 15
29333
+ * 0
28531
29334
  */
28532
29335
  nextToken?: string;
28533
- /**
28534
- * @remarks
28535
- * This parameter is required.
28536
- *
28537
- * @example
28538
- * 123456
28539
- */
28540
- orgId?: number;
28541
29336
  static names(): { [key: string]: string } {
28542
29337
  return {
28543
29338
  tenantContext: 'TenantContext',
28544
- maxResults: 'maxResults',
29339
+ isDone: 'isDone',
28545
29340
  nextToken: 'nextToken',
28546
- orgId: 'orgId',
28547
29341
  };
28548
29342
  }
28549
29343
 
28550
29344
  static types(): { [key: string]: any } {
28551
29345
  return {
28552
- tenantContext: QueryOrgHonorsRequestTenantContext,
28553
- maxResults: 'number',
29346
+ tenantContext: QueryOrgTodoTasksRequestTenantContext,
29347
+ isDone: 'boolean',
28554
29348
  nextToken: 'string',
28555
- orgId: 'number',
28556
29349
  };
28557
29350
  }
28558
29351
 
@@ -28561,44 +29354,31 @@ export class QueryOrgHonorsRequest extends $tea.Model {
28561
29354
  }
28562
29355
  }
28563
29356
 
28564
- export class QueryOrgHonorsShrinkRequest extends $tea.Model {
29357
+ export class QueryOrgTodoTasksShrinkRequest extends $tea.Model {
28565
29358
  tenantContextShrink?: string;
28566
29359
  /**
28567
29360
  * @example
28568
- * 48
29361
+ * true
28569
29362
  */
28570
- maxResults?: number;
29363
+ isDone?: boolean;
28571
29364
  /**
28572
- * @remarks
28573
- * This parameter is required.
28574
- *
28575
29365
  * @example
28576
- * 15
29366
+ * 0
28577
29367
  */
28578
29368
  nextToken?: string;
28579
- /**
28580
- * @remarks
28581
- * This parameter is required.
28582
- *
28583
- * @example
28584
- * 123456
28585
- */
28586
- orgId?: number;
28587
29369
  static names(): { [key: string]: string } {
28588
29370
  return {
28589
29371
  tenantContextShrink: 'TenantContext',
28590
- maxResults: 'maxResults',
29372
+ isDone: 'isDone',
28591
29373
  nextToken: 'nextToken',
28592
- orgId: 'orgId',
28593
29374
  };
28594
29375
  }
28595
29376
 
28596
29377
  static types(): { [key: string]: any } {
28597
29378
  return {
28598
29379
  tenantContextShrink: 'string',
28599
- maxResults: 'number',
29380
+ isDone: 'boolean',
28600
29381
  nextToken: 'string',
28601
- orgId: 'number',
28602
29382
  };
28603
29383
  }
28604
29384
 
@@ -28607,13 +29387,12 @@ export class QueryOrgHonorsShrinkRequest extends $tea.Model {
28607
29387
  }
28608
29388
  }
28609
29389
 
28610
- export class QueryOrgHonorsResponseBody extends $tea.Model {
29390
+ export class QueryOrgTodoTasksResponseBody extends $tea.Model {
28611
29391
  /**
28612
29392
  * @example
28613
29393
  * 15
28614
29394
  */
28615
29395
  nextToken?: string;
28616
- openHonors?: QueryOrgHonorsResponseBodyOpenHonors[];
28617
29396
  /**
28618
29397
  * @remarks
28619
29398
  * requestId
@@ -28622,19 +29401,20 @@ export class QueryOrgHonorsResponseBody extends $tea.Model {
28622
29401
  * 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
28623
29402
  */
28624
29403
  requestId?: string;
29404
+ todoCards?: QueryOrgTodoTasksResponseBodyTodoCards[];
28625
29405
  static names(): { [key: string]: string } {
28626
29406
  return {
28627
29407
  nextToken: 'nextToken',
28628
- openHonors: 'openHonors',
28629
29408
  requestId: 'requestId',
29409
+ todoCards: 'todoCards',
28630
29410
  };
28631
29411
  }
28632
29412
 
28633
29413
  static types(): { [key: string]: any } {
28634
29414
  return {
28635
29415
  nextToken: 'string',
28636
- openHonors: { 'type': 'array', 'itemType': QueryOrgHonorsResponseBodyOpenHonors },
28637
29416
  requestId: 'string',
29417
+ todoCards: { 'type': 'array', 'itemType': QueryOrgTodoTasksResponseBodyTodoCards },
28638
29418
  };
28639
29419
  }
28640
29420
 
@@ -28643,10 +29423,10 @@ export class QueryOrgHonorsResponseBody extends $tea.Model {
28643
29423
  }
28644
29424
  }
28645
29425
 
28646
- export class QueryOrgHonorsResponse extends $tea.Model {
29426
+ export class QueryOrgTodoTasksResponse extends $tea.Model {
28647
29427
  headers?: { [key: string]: string };
28648
29428
  statusCode?: number;
28649
- body?: QueryOrgHonorsResponseBody;
29429
+ body?: QueryOrgTodoTasksResponseBody;
28650
29430
  static names(): { [key: string]: string } {
28651
29431
  return {
28652
29432
  headers: 'headers',
@@ -28659,7 +29439,7 @@ export class QueryOrgHonorsResponse extends $tea.Model {
28659
29439
  return {
28660
29440
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
28661
29441
  statusCode: 'number',
28662
- body: QueryOrgHonorsResponseBody,
29442
+ body: QueryOrgTodoTasksResponseBody,
28663
29443
  };
28664
29444
  }
28665
29445
 
@@ -28668,9 +29448,9 @@ export class QueryOrgHonorsResponse extends $tea.Model {
28668
29448
  }
28669
29449
  }
28670
29450
 
28671
- export class QueryOrgTodoTasksHeaders extends $tea.Model {
29451
+ export class QueryRecordMinutesUrlHeaders extends $tea.Model {
28672
29452
  commonHeaders?: { [key: string]: string };
28673
- accountContext?: QueryOrgTodoTasksHeadersAccountContext;
29453
+ accountContext?: QueryRecordMinutesUrlHeadersAccountContext;
28674
29454
  static names(): { [key: string]: string } {
28675
29455
  return {
28676
29456
  commonHeaders: 'commonHeaders',
@@ -28681,7 +29461,7 @@ export class QueryOrgTodoTasksHeaders extends $tea.Model {
28681
29461
  static types(): { [key: string]: any } {
28682
29462
  return {
28683
29463
  commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
28684
- accountContext: QueryOrgTodoTasksHeadersAccountContext,
29464
+ accountContext: QueryRecordMinutesUrlHeadersAccountContext,
28685
29465
  };
28686
29466
  }
28687
29467
 
@@ -28690,7 +29470,7 @@ export class QueryOrgTodoTasksHeaders extends $tea.Model {
28690
29470
  }
28691
29471
  }
28692
29472
 
28693
- export class QueryOrgTodoTasksShrinkHeaders extends $tea.Model {
29473
+ export class QueryRecordMinutesUrlShrinkHeaders extends $tea.Model {
28694
29474
  commonHeaders?: { [key: string]: string };
28695
29475
  accountContextShrink?: string;
28696
29476
  static names(): { [key: string]: string } {
@@ -28712,31 +29492,37 @@ export class QueryOrgTodoTasksShrinkHeaders extends $tea.Model {
28712
29492
  }
28713
29493
  }
28714
29494
 
28715
- export class QueryOrgTodoTasksRequest extends $tea.Model {
28716
- tenantContext?: QueryOrgTodoTasksRequestTenantContext;
29495
+ export class QueryRecordMinutesUrlRequest extends $tea.Model {
28717
29496
  /**
29497
+ * @remarks
29498
+ * This parameter is required.
29499
+ *
28718
29500
  * @example
28719
- * true
29501
+ * minutes
28720
29502
  */
28721
- isDone?: boolean;
29503
+ bizType?: string;
28722
29504
  /**
29505
+ * @remarks
29506
+ * This parameter is required.
29507
+ *
28723
29508
  * @example
28724
- * 0
29509
+ * 1dddwrqrq
28725
29510
  */
28726
- nextToken?: string;
29511
+ conferenceId?: string;
29512
+ tenantContext?: QueryRecordMinutesUrlRequestTenantContext;
28727
29513
  static names(): { [key: string]: string } {
28728
29514
  return {
29515
+ bizType: 'BizType',
29516
+ conferenceId: 'ConferenceId',
28729
29517
  tenantContext: 'TenantContext',
28730
- isDone: 'isDone',
28731
- nextToken: 'nextToken',
28732
29518
  };
28733
29519
  }
28734
29520
 
28735
29521
  static types(): { [key: string]: any } {
28736
29522
  return {
28737
- tenantContext: QueryOrgTodoTasksRequestTenantContext,
28738
- isDone: 'boolean',
28739
- nextToken: 'string',
29523
+ bizType: 'string',
29524
+ conferenceId: 'string',
29525
+ tenantContext: QueryRecordMinutesUrlRequestTenantContext,
28740
29526
  };
28741
29527
  }
28742
29528
 
@@ -28745,31 +29531,37 @@ export class QueryOrgTodoTasksRequest extends $tea.Model {
28745
29531
  }
28746
29532
  }
28747
29533
 
28748
- export class QueryOrgTodoTasksShrinkRequest extends $tea.Model {
28749
- tenantContextShrink?: string;
29534
+ export class QueryRecordMinutesUrlShrinkRequest extends $tea.Model {
28750
29535
  /**
29536
+ * @remarks
29537
+ * This parameter is required.
29538
+ *
28751
29539
  * @example
28752
- * true
29540
+ * minutes
28753
29541
  */
28754
- isDone?: boolean;
29542
+ bizType?: string;
28755
29543
  /**
29544
+ * @remarks
29545
+ * This parameter is required.
29546
+ *
28756
29547
  * @example
28757
- * 0
29548
+ * 1dddwrqrq
28758
29549
  */
28759
- nextToken?: string;
29550
+ conferenceId?: string;
29551
+ tenantContextShrink?: string;
28760
29552
  static names(): { [key: string]: string } {
28761
29553
  return {
29554
+ bizType: 'BizType',
29555
+ conferenceId: 'ConferenceId',
28762
29556
  tenantContextShrink: 'TenantContext',
28763
- isDone: 'isDone',
28764
- nextToken: 'nextToken',
28765
29557
  };
28766
29558
  }
28767
29559
 
28768
29560
  static types(): { [key: string]: any } {
28769
29561
  return {
29562
+ bizType: 'string',
29563
+ conferenceId: 'string',
28770
29564
  tenantContextShrink: 'string',
28771
- isDone: 'boolean',
28772
- nextToken: 'string',
28773
29565
  };
28774
29566
  }
28775
29567
 
@@ -28778,34 +29570,38 @@ export class QueryOrgTodoTasksShrinkRequest extends $tea.Model {
28778
29570
  }
28779
29571
  }
28780
29572
 
28781
- export class QueryOrgTodoTasksResponseBody extends $tea.Model {
29573
+ export class QueryRecordMinutesUrlResponseBody extends $tea.Model {
29574
+ recordMinutesUrls?: QueryRecordMinutesUrlResponseBodyRecordMinutesUrls[];
28782
29575
  /**
28783
29576
  * @example
28784
- * 15
29577
+ * 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
28785
29578
  */
28786
- nextToken?: string;
29579
+ requestId?: string;
28787
29580
  /**
28788
- * @remarks
28789
- * requestId
28790
- *
28791
29581
  * @example
28792
29582
  * 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
28793
29583
  */
28794
- requestId?: string;
28795
- todoCards?: QueryOrgTodoTasksResponseBodyTodoCards[];
29584
+ vendorRequestId?: string;
29585
+ /**
29586
+ * @example
29587
+ * dingtalk
29588
+ */
29589
+ vendorType?: string;
28796
29590
  static names(): { [key: string]: string } {
28797
29591
  return {
28798
- nextToken: 'nextToken',
29592
+ recordMinutesUrls: 'recordMinutesUrls',
28799
29593
  requestId: 'requestId',
28800
- todoCards: 'todoCards',
29594
+ vendorRequestId: 'vendorRequestId',
29595
+ vendorType: 'vendorType',
28801
29596
  };
28802
29597
  }
28803
29598
 
28804
29599
  static types(): { [key: string]: any } {
28805
29600
  return {
28806
- nextToken: 'string',
29601
+ recordMinutesUrls: { 'type': 'array', 'itemType': QueryRecordMinutesUrlResponseBodyRecordMinutesUrls },
28807
29602
  requestId: 'string',
28808
- todoCards: { 'type': 'array', 'itemType': QueryOrgTodoTasksResponseBodyTodoCards },
29603
+ vendorRequestId: 'string',
29604
+ vendorType: 'string',
28809
29605
  };
28810
29606
  }
28811
29607
 
@@ -28814,10 +29610,10 @@ export class QueryOrgTodoTasksResponseBody extends $tea.Model {
28814
29610
  }
28815
29611
  }
28816
29612
 
28817
- export class QueryOrgTodoTasksResponse extends $tea.Model {
29613
+ export class QueryRecordMinutesUrlResponse extends $tea.Model {
28818
29614
  headers?: { [key: string]: string };
28819
29615
  statusCode?: number;
28820
- body?: QueryOrgTodoTasksResponseBody;
29616
+ body?: QueryRecordMinutesUrlResponseBody;
28821
29617
  static names(): { [key: string]: string } {
28822
29618
  return {
28823
29619
  headers: 'headers',
@@ -28830,7 +29626,7 @@ export class QueryOrgTodoTasksResponse extends $tea.Model {
28830
29626
  return {
28831
29627
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
28832
29628
  statusCode: 'number',
28833
- body: QueryOrgTodoTasksResponseBody,
29629
+ body: QueryRecordMinutesUrlResponseBody,
28834
29630
  };
28835
29631
  }
28836
29632
 
@@ -39595,6 +40391,55 @@ export class AddMeetingRoomsRequestMeetingRoomsToAdd extends $tea.Model {
39595
40391
  }
39596
40392
  }
39597
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
+
39598
40443
  export class AddScenegroupMemberHeadersAccountContext extends $tea.Model {
39599
40444
  /**
39600
40445
  * @remarks
@@ -50747,10 +51592,199 @@ export class GetUserHeadersAccountContext extends $tea.Model {
50747
51592
  }
50748
51593
  }
50749
51594
 
50750
- export class GetUserRequestTenantContext extends $tea.Model {
51595
+ export class GetUserRequestTenantContext extends $tea.Model {
51596
+ /**
51597
+ * @example
51598
+ * 1
51599
+ */
51600
+ tenantId?: string;
51601
+ static names(): { [key: string]: string } {
51602
+ return {
51603
+ tenantId: 'tenantId',
51604
+ };
51605
+ }
51606
+
51607
+ static types(): { [key: string]: any } {
51608
+ return {
51609
+ tenantId: 'string',
51610
+ };
51611
+ }
51612
+
51613
+ constructor(map?: { [key: string]: any }) {
51614
+ super(map);
51615
+ }
51616
+ }
51617
+
51618
+ export class GetUserResponseBodyDeptOrderList extends $tea.Model {
51619
+ deptId?: number;
51620
+ order?: number;
51621
+ static names(): { [key: string]: string } {
51622
+ return {
51623
+ deptId: 'deptId',
51624
+ order: 'order',
51625
+ };
51626
+ }
51627
+
51628
+ static types(): { [key: string]: any } {
51629
+ return {
51630
+ deptId: 'number',
51631
+ order: 'number',
51632
+ };
51633
+ }
51634
+
51635
+ constructor(map?: { [key: string]: any }) {
51636
+ super(map);
51637
+ }
51638
+ }
51639
+
51640
+ export class GetUserResponseBodyLeaderInDept extends $tea.Model {
51641
+ deptId?: number;
51642
+ leader?: boolean;
51643
+ static names(): { [key: string]: string } {
51644
+ return {
51645
+ deptId: 'deptId',
51646
+ leader: 'leader',
51647
+ };
51648
+ }
51649
+
51650
+ static types(): { [key: string]: any } {
51651
+ return {
51652
+ deptId: 'number',
51653
+ leader: 'boolean',
51654
+ };
51655
+ }
51656
+
51657
+ constructor(map?: { [key: string]: any }) {
51658
+ super(map);
51659
+ }
51660
+ }
51661
+
51662
+ export class GetUserResponseBodyRoleList extends $tea.Model {
51663
+ /**
51664
+ * @example
51665
+ * 职务
51666
+ */
51667
+ groupName?: string;
51668
+ id?: number;
51669
+ /**
51670
+ * @example
51671
+ * 张三
51672
+ */
51673
+ name?: string;
51674
+ static names(): { [key: string]: string } {
51675
+ return {
51676
+ groupName: 'groupName',
51677
+ id: 'id',
51678
+ name: 'name',
51679
+ };
51680
+ }
51681
+
51682
+ static types(): { [key: string]: any } {
51683
+ return {
51684
+ groupName: 'string',
51685
+ id: 'number',
51686
+ name: 'string',
51687
+ };
51688
+ }
51689
+
51690
+ constructor(map?: { [key: string]: any }) {
51691
+ super(map);
51692
+ }
51693
+ }
51694
+
51695
+ export class GetUserResponseBodyUnionEmpExtUnionEmpMapList extends $tea.Model {
51696
+ /**
51697
+ * @example
51698
+ * dingxxx
51699
+ */
51700
+ cropId?: string;
51701
+ /**
51702
+ * @example
51703
+ * zhangsan
51704
+ */
51705
+ userid?: string;
51706
+ static names(): { [key: string]: string } {
51707
+ return {
51708
+ cropId: 'cropId',
51709
+ userid: 'userid',
51710
+ };
51711
+ }
51712
+
51713
+ static types(): { [key: string]: any } {
51714
+ return {
51715
+ cropId: 'string',
51716
+ userid: 'string',
51717
+ };
51718
+ }
51719
+
51720
+ constructor(map?: { [key: string]: any }) {
51721
+ super(map);
51722
+ }
51723
+ }
51724
+
51725
+ export class GetUserResponseBodyUnionEmpExt extends $tea.Model {
51726
+ /**
51727
+ * @example
51728
+ * dingxxx
51729
+ */
51730
+ corpId?: string;
51731
+ unionEmpMapList?: GetUserResponseBodyUnionEmpExtUnionEmpMapList[];
51732
+ /**
51733
+ * @example
51734
+ * zhangsan
51735
+ */
51736
+ userid?: string;
51737
+ static names(): { [key: string]: string } {
51738
+ return {
51739
+ corpId: 'corpId',
51740
+ unionEmpMapList: 'unionEmpMapList',
51741
+ userid: 'userid',
51742
+ };
51743
+ }
51744
+
51745
+ static types(): { [key: string]: any } {
51746
+ return {
51747
+ corpId: 'string',
51748
+ unionEmpMapList: { 'type': 'array', 'itemType': GetUserResponseBodyUnionEmpExtUnionEmpMapList },
51749
+ userid: 'string',
51750
+ };
51751
+ }
51752
+
51753
+ constructor(map?: { [key: string]: any }) {
51754
+ super(map);
51755
+ }
51756
+ }
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 {
50751
51785
  /**
50752
51786
  * @example
50753
- * 1
51787
+ * xxxxxx
50754
51788
  */
50755
51789
  tenantId?: string;
50756
51790
  static names(): { [key: string]: string } {
@@ -50770,147 +51804,7 @@ export class GetUserRequestTenantContext extends $tea.Model {
50770
51804
  }
50771
51805
  }
50772
51806
 
50773
- export class GetUserResponseBodyDeptOrderList extends $tea.Model {
50774
- deptId?: number;
50775
- order?: number;
50776
- static names(): { [key: string]: string } {
50777
- return {
50778
- deptId: 'deptId',
50779
- order: 'order',
50780
- };
50781
- }
50782
-
50783
- static types(): { [key: string]: any } {
50784
- return {
50785
- deptId: 'number',
50786
- order: 'number',
50787
- };
50788
- }
50789
-
50790
- constructor(map?: { [key: string]: any }) {
50791
- super(map);
50792
- }
50793
- }
50794
-
50795
- export class GetUserResponseBodyLeaderInDept extends $tea.Model {
50796
- deptId?: number;
50797
- leader?: boolean;
50798
- static names(): { [key: string]: string } {
50799
- return {
50800
- deptId: 'deptId',
50801
- leader: 'leader',
50802
- };
50803
- }
50804
-
50805
- static types(): { [key: string]: any } {
50806
- return {
50807
- deptId: 'number',
50808
- leader: 'boolean',
50809
- };
50810
- }
50811
-
50812
- constructor(map?: { [key: string]: any }) {
50813
- super(map);
50814
- }
50815
- }
50816
-
50817
- export class GetUserResponseBodyRoleList extends $tea.Model {
50818
- /**
50819
- * @example
50820
- * 职务
50821
- */
50822
- groupName?: string;
50823
- id?: number;
50824
- /**
50825
- * @example
50826
- * 张三
50827
- */
50828
- name?: string;
50829
- static names(): { [key: string]: string } {
50830
- return {
50831
- groupName: 'groupName',
50832
- id: 'id',
50833
- name: 'name',
50834
- };
50835
- }
50836
-
50837
- static types(): { [key: string]: any } {
50838
- return {
50839
- groupName: 'string',
50840
- id: 'number',
50841
- name: 'string',
50842
- };
50843
- }
50844
-
50845
- constructor(map?: { [key: string]: any }) {
50846
- super(map);
50847
- }
50848
- }
50849
-
50850
- export class GetUserResponseBodyUnionEmpExtUnionEmpMapList extends $tea.Model {
50851
- /**
50852
- * @example
50853
- * dingxxx
50854
- */
50855
- cropId?: string;
50856
- /**
50857
- * @example
50858
- * zhangsan
50859
- */
50860
- userid?: string;
50861
- static names(): { [key: string]: string } {
50862
- return {
50863
- cropId: 'cropId',
50864
- userid: 'userid',
50865
- };
50866
- }
50867
-
50868
- static types(): { [key: string]: any } {
50869
- return {
50870
- cropId: 'string',
50871
- userid: 'string',
50872
- };
50873
- }
50874
-
50875
- constructor(map?: { [key: string]: any }) {
50876
- super(map);
50877
- }
50878
- }
50879
-
50880
- export class GetUserResponseBodyUnionEmpExt extends $tea.Model {
50881
- /**
50882
- * @example
50883
- * dingxxx
50884
- */
50885
- corpId?: string;
50886
- unionEmpMapList?: GetUserResponseBodyUnionEmpExtUnionEmpMapList[];
50887
- /**
50888
- * @example
50889
- * zhangsan
50890
- */
50891
- userid?: string;
50892
- static names(): { [key: string]: string } {
50893
- return {
50894
- corpId: 'corpId',
50895
- unionEmpMapList: 'unionEmpMapList',
50896
- userid: 'userid',
50897
- };
50898
- }
50899
-
50900
- static types(): { [key: string]: any } {
50901
- return {
50902
- corpId: 'string',
50903
- unionEmpMapList: { 'type': 'array', 'itemType': GetUserResponseBodyUnionEmpExtUnionEmpMapList },
50904
- userid: 'string',
50905
- };
50906
- }
50907
-
50908
- constructor(map?: { [key: string]: any }) {
50909
- super(map);
50910
- }
50911
- }
50912
-
50913
- export class GetUserIdHeadersAccountContext extends $tea.Model {
51807
+ export class GetUserIdByOrgIdAndStaffIdHeadersAccountContext extends $tea.Model {
50914
51808
  /**
50915
51809
  * @remarks
50916
51810
  * This parameter is required.
@@ -50936,7 +51830,7 @@ export class GetUserIdHeadersAccountContext extends $tea.Model {
50936
51830
  }
50937
51831
  }
50938
51832
 
50939
- export class GetUserIdRequestTenantContext extends $tea.Model {
51833
+ export class GetUserIdByOrgIdAndStaffIdRequestTenantContext extends $tea.Model {
50940
51834
  /**
50941
51835
  * @example
50942
51836
  * xxxxxx
@@ -54324,6 +55218,127 @@ export class ListTeamsResponseBodyTeams extends $tea.Model {
54324
55218
  }
54325
55219
  }
54326
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
+
54327
55342
  export class ListWorkspacesHeadersAccountContext extends $tea.Model {
54328
55343
  /**
54329
55344
  * @remarks
@@ -58370,6 +59385,78 @@ export class QueryOrgTodoTasksResponseBodyTodoCards extends $tea.Model {
58370
59385
  }
58371
59386
  }
58372
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
+
58373
59460
  export class QueryReportDetailHeadersAccountContext extends $tea.Model {
58374
59461
  /**
58375
59462
  * @remarks
@@ -62145,6 +63232,84 @@ export default class Client extends OpenApi {
62145
63232
  return await this.addMeetingRoomsWithOptions(request, headers, runtime);
62146
63233
  }
62147
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
+
62148
63313
  /**
62149
63314
  * 新增群成员
62150
63315
  *
@@ -70483,6 +71648,76 @@ export default class Client extends OpenApi {
70483
71648
  return await this.getUserIdWithOptions(request, headers, runtime);
70484
71649
  }
70485
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
+
70486
71721
  /**
70487
71722
  * 获取用户最新的有效的专属账号迁移方案
70488
71723
  *
@@ -72121,6 +73356,88 @@ export default class Client extends OpenApi {
72121
73356
  return await this.listTeamsWithOptions(request, headers, runtime);
72122
73357
  }
72123
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
+
72124
73441
  /**
72125
73442
  * 获取知识库列表
72126
73443
  *
@@ -73687,6 +75004,80 @@ export default class Client extends OpenApi {
73687
75004
  return await this.queryOrgTodoTasksWithOptions(request, headers, runtime);
73688
75005
  }
73689
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
+
73690
75081
  /**
73691
75082
  * 获取日志详情
73692
75083
  *