@alicloud/aliding20230426 2.22.0 → 2.23.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
@@ -6982,6 +6982,11 @@ export class CreatePersonalTodoTaskRequest extends $tea.Model {
6982
6982
  * [ "012345" ]
6983
6983
  */
6984
6984
  participantIds?: string[];
6985
+ /**
6986
+ * @example
6987
+ * 1703750708595
6988
+ */
6989
+ reminderTimeStamp?: number;
6985
6990
  /**
6986
6991
  * @remarks
6987
6992
  * This parameter is required.
@@ -6998,6 +7003,7 @@ export class CreatePersonalTodoTaskRequest extends $tea.Model {
6998
7003
  executorIds: 'ExecutorIds',
6999
7004
  notifyConfigs: 'NotifyConfigs',
7000
7005
  participantIds: 'ParticipantIds',
7006
+ reminderTimeStamp: 'ReminderTimeStamp',
7001
7007
  subject: 'Subject',
7002
7008
  tenantContext: 'TenantContext',
7003
7009
  };
@@ -7010,6 +7016,7 @@ export class CreatePersonalTodoTaskRequest extends $tea.Model {
7010
7016
  executorIds: { 'type': 'array', 'itemType': 'string' },
7011
7017
  notifyConfigs: CreatePersonalTodoTaskRequestNotifyConfigs,
7012
7018
  participantIds: { 'type': 'array', 'itemType': 'string' },
7019
+ reminderTimeStamp: 'number',
7013
7020
  subject: 'string',
7014
7021
  tenantContext: CreatePersonalTodoTaskRequestTenantContext,
7015
7022
  };
@@ -7045,6 +7052,11 @@ export class CreatePersonalTodoTaskShrinkRequest extends $tea.Model {
7045
7052
  * [ "012345" ]
7046
7053
  */
7047
7054
  participantIdsShrink?: string;
7055
+ /**
7056
+ * @example
7057
+ * 1703750708595
7058
+ */
7059
+ reminderTimeStamp?: number;
7048
7060
  /**
7049
7061
  * @remarks
7050
7062
  * This parameter is required.
@@ -7061,6 +7073,7 @@ export class CreatePersonalTodoTaskShrinkRequest extends $tea.Model {
7061
7073
  executorIdsShrink: 'ExecutorIds',
7062
7074
  notifyConfigsShrink: 'NotifyConfigs',
7063
7075
  participantIdsShrink: 'ParticipantIds',
7076
+ reminderTimeStamp: 'ReminderTimeStamp',
7064
7077
  subject: 'Subject',
7065
7078
  tenantContextShrink: 'TenantContext',
7066
7079
  };
@@ -7073,6 +7086,7 @@ export class CreatePersonalTodoTaskShrinkRequest extends $tea.Model {
7073
7086
  executorIdsShrink: 'string',
7074
7087
  notifyConfigsShrink: 'string',
7075
7088
  participantIdsShrink: 'string',
7089
+ reminderTimeStamp: 'number',
7076
7090
  subject: 'string',
7077
7091
  tenantContextShrink: 'string',
7078
7092
  };
@@ -7724,6 +7738,7 @@ export class CreateScheduleConferenceRequest extends $tea.Model {
7724
7738
  * 1687928400000L
7725
7739
  */
7726
7740
  endTime?: number;
7741
+ scheduleConfSettingModel?: CreateScheduleConferenceRequestScheduleConfSettingModel;
7727
7742
  /**
7728
7743
  * @remarks
7729
7744
  * This parameter is required.
@@ -7744,6 +7759,7 @@ export class CreateScheduleConferenceRequest extends $tea.Model {
7744
7759
  static names(): { [key: string]: string } {
7745
7760
  return {
7746
7761
  endTime: 'EndTime',
7762
+ scheduleConfSettingModel: 'ScheduleConfSettingModel',
7747
7763
  startTime: 'StartTime',
7748
7764
  tenantContext: 'TenantContext',
7749
7765
  title: 'Title',
@@ -7753,6 +7769,7 @@ export class CreateScheduleConferenceRequest extends $tea.Model {
7753
7769
  static types(): { [key: string]: any } {
7754
7770
  return {
7755
7771
  endTime: 'number',
7772
+ scheduleConfSettingModel: CreateScheduleConferenceRequestScheduleConfSettingModel,
7756
7773
  startTime: 'number',
7757
7774
  tenantContext: CreateScheduleConferenceRequestTenantContext,
7758
7775
  title: 'string',
@@ -7773,6 +7790,7 @@ export class CreateScheduleConferenceShrinkRequest extends $tea.Model {
7773
7790
  * 1687928400000L
7774
7791
  */
7775
7792
  endTime?: number;
7793
+ scheduleConfSettingModelShrink?: string;
7776
7794
  /**
7777
7795
  * @remarks
7778
7796
  * This parameter is required.
@@ -7793,6 +7811,7 @@ export class CreateScheduleConferenceShrinkRequest extends $tea.Model {
7793
7811
  static names(): { [key: string]: string } {
7794
7812
  return {
7795
7813
  endTime: 'EndTime',
7814
+ scheduleConfSettingModelShrink: 'ScheduleConfSettingModel',
7796
7815
  startTime: 'StartTime',
7797
7816
  tenantContextShrink: 'TenantContext',
7798
7817
  title: 'Title',
@@ -7802,6 +7821,7 @@ export class CreateScheduleConferenceShrinkRequest extends $tea.Model {
7802
7821
  static types(): { [key: string]: any } {
7803
7822
  return {
7804
7823
  endTime: 'number',
7824
+ scheduleConfSettingModelShrink: 'string',
7805
7825
  startTime: 'number',
7806
7826
  tenantContextShrink: 'string',
7807
7827
  title: 'string',
@@ -20649,6 +20669,197 @@ export class GetOrgLiveListResponse extends $tea.Model {
20649
20669
  }
20650
20670
  }
20651
20671
 
20672
+ export class GetOrgOrWebOpenDocContentTaskIdHeaders extends $tea.Model {
20673
+ commonHeaders?: { [key: string]: string };
20674
+ accountContext?: GetOrgOrWebOpenDocContentTaskIdHeadersAccountContext;
20675
+ static names(): { [key: string]: string } {
20676
+ return {
20677
+ commonHeaders: 'commonHeaders',
20678
+ accountContext: 'AccountContext',
20679
+ };
20680
+ }
20681
+
20682
+ static types(): { [key: string]: any } {
20683
+ return {
20684
+ commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
20685
+ accountContext: GetOrgOrWebOpenDocContentTaskIdHeadersAccountContext,
20686
+ };
20687
+ }
20688
+
20689
+ constructor(map?: { [key: string]: any }) {
20690
+ super(map);
20691
+ }
20692
+ }
20693
+
20694
+ export class GetOrgOrWebOpenDocContentTaskIdShrinkHeaders extends $tea.Model {
20695
+ commonHeaders?: { [key: string]: string };
20696
+ accountContextShrink?: string;
20697
+ static names(): { [key: string]: string } {
20698
+ return {
20699
+ commonHeaders: 'commonHeaders',
20700
+ accountContextShrink: 'AccountContext',
20701
+ };
20702
+ }
20703
+
20704
+ static types(): { [key: string]: any } {
20705
+ return {
20706
+ commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
20707
+ accountContextShrink: 'string',
20708
+ };
20709
+ }
20710
+
20711
+ constructor(map?: { [key: string]: any }) {
20712
+ super(map);
20713
+ }
20714
+ }
20715
+
20716
+ export class GetOrgOrWebOpenDocContentTaskIdRequest extends $tea.Model {
20717
+ /**
20718
+ * @remarks
20719
+ * This parameter is required.
20720
+ *
20721
+ * @example
20722
+ * 20eMKjyp810mMdK4Hz4B5BA6JxAZB1Gv
20723
+ */
20724
+ dentryUuid?: string;
20725
+ generateCp?: boolean;
20726
+ /**
20727
+ * @example
20728
+ * markdown
20729
+ */
20730
+ targetFormat?: string;
20731
+ tenantContext?: GetOrgOrWebOpenDocContentTaskIdRequestTenantContext;
20732
+ static names(): { [key: string]: string } {
20733
+ return {
20734
+ dentryUuid: 'DentryUuid',
20735
+ generateCp: 'GenerateCp',
20736
+ targetFormat: 'TargetFormat',
20737
+ tenantContext: 'TenantContext',
20738
+ };
20739
+ }
20740
+
20741
+ static types(): { [key: string]: any } {
20742
+ return {
20743
+ dentryUuid: 'string',
20744
+ generateCp: 'boolean',
20745
+ targetFormat: 'string',
20746
+ tenantContext: GetOrgOrWebOpenDocContentTaskIdRequestTenantContext,
20747
+ };
20748
+ }
20749
+
20750
+ constructor(map?: { [key: string]: any }) {
20751
+ super(map);
20752
+ }
20753
+ }
20754
+
20755
+ export class GetOrgOrWebOpenDocContentTaskIdShrinkRequest extends $tea.Model {
20756
+ /**
20757
+ * @remarks
20758
+ * This parameter is required.
20759
+ *
20760
+ * @example
20761
+ * 20eMKjyp810mMdK4Hz4B5BA6JxAZB1Gv
20762
+ */
20763
+ dentryUuid?: string;
20764
+ generateCp?: boolean;
20765
+ /**
20766
+ * @example
20767
+ * markdown
20768
+ */
20769
+ targetFormat?: string;
20770
+ tenantContextShrink?: string;
20771
+ static names(): { [key: string]: string } {
20772
+ return {
20773
+ dentryUuid: 'DentryUuid',
20774
+ generateCp: 'GenerateCp',
20775
+ targetFormat: 'TargetFormat',
20776
+ tenantContextShrink: 'TenantContext',
20777
+ };
20778
+ }
20779
+
20780
+ static types(): { [key: string]: any } {
20781
+ return {
20782
+ dentryUuid: 'string',
20783
+ generateCp: 'boolean',
20784
+ targetFormat: 'string',
20785
+ tenantContextShrink: 'string',
20786
+ };
20787
+ }
20788
+
20789
+ constructor(map?: { [key: string]: any }) {
20790
+ super(map);
20791
+ }
20792
+ }
20793
+
20794
+ export class GetOrgOrWebOpenDocContentTaskIdResponseBody extends $tea.Model {
20795
+ /**
20796
+ * @example
20797
+ * 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
20798
+ */
20799
+ requestId?: string;
20800
+ /**
20801
+ * @example
20802
+ * 158740210521
20803
+ */
20804
+ taskId?: number;
20805
+ /**
20806
+ * @example
20807
+ * 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
20808
+ */
20809
+ vendorRequestId?: string;
20810
+ /**
20811
+ * @example
20812
+ * dingtalk
20813
+ */
20814
+ vendorType?: string;
20815
+ static names(): { [key: string]: string } {
20816
+ return {
20817
+ requestId: 'requestId',
20818
+ taskId: 'taskId',
20819
+ vendorRequestId: 'vendorRequestId',
20820
+ vendorType: 'vendorType',
20821
+ };
20822
+ }
20823
+
20824
+ static types(): { [key: string]: any } {
20825
+ return {
20826
+ requestId: 'string',
20827
+ taskId: 'number',
20828
+ vendorRequestId: 'string',
20829
+ vendorType: 'string',
20830
+ };
20831
+ }
20832
+
20833
+ constructor(map?: { [key: string]: any }) {
20834
+ super(map);
20835
+ }
20836
+ }
20837
+
20838
+ export class GetOrgOrWebOpenDocContentTaskIdResponse extends $tea.Model {
20839
+ headers?: { [key: string]: string };
20840
+ statusCode?: number;
20841
+ body?: GetOrgOrWebOpenDocContentTaskIdResponseBody;
20842
+ static names(): { [key: string]: string } {
20843
+ return {
20844
+ headers: 'headers',
20845
+ statusCode: 'statusCode',
20846
+ body: 'body',
20847
+ };
20848
+ }
20849
+
20850
+ static types(): { [key: string]: any } {
20851
+ return {
20852
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
20853
+ statusCode: 'number',
20854
+ body: GetOrgOrWebOpenDocContentTaskIdResponseBody,
20855
+ };
20856
+ }
20857
+
20858
+ constructor(map?: { [key: string]: any }) {
20859
+ super(map);
20860
+ }
20861
+ }
20862
+
20652
20863
  export class GetProcessDefinitionHeaders extends $tea.Model {
20653
20864
  commonHeaders?: { [key: string]: string };
20654
20865
  accountContext?: GetProcessDefinitionHeadersAccountContext;
@@ -30377,9 +30588,9 @@ export class QueryConferenceInfoResponse extends $tea.Model {
30377
30588
  }
30378
30589
  }
30379
30590
 
30380
- export class QueryConferenceMembersHeaders extends $tea.Model {
30591
+ export class QueryConferenceInfoByRoomCodeHeaders extends $tea.Model {
30381
30592
  commonHeaders?: { [key: string]: string };
30382
- accountContext?: QueryConferenceMembersHeadersAccountContext;
30593
+ accountContext?: QueryConferenceInfoByRoomCodeHeadersAccountContext;
30383
30594
  static names(): { [key: string]: string } {
30384
30595
  return {
30385
30596
  commonHeaders: 'commonHeaders',
@@ -30390,7 +30601,7 @@ export class QueryConferenceMembersHeaders extends $tea.Model {
30390
30601
  static types(): { [key: string]: any } {
30391
30602
  return {
30392
30603
  commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
30393
- accountContext: QueryConferenceMembersHeadersAccountContext,
30604
+ accountContext: QueryConferenceInfoByRoomCodeHeadersAccountContext,
30394
30605
  };
30395
30606
  }
30396
30607
 
@@ -30399,7 +30610,7 @@ export class QueryConferenceMembersHeaders extends $tea.Model {
30399
30610
  }
30400
30611
  }
30401
30612
 
30402
- export class QueryConferenceMembersShrinkHeaders extends $tea.Model {
30613
+ export class QueryConferenceInfoByRoomCodeShrinkHeaders extends $tea.Model {
30403
30614
  commonHeaders?: { [key: string]: string };
30404
30615
  accountContextShrink?: string;
30405
30616
  static names(): { [key: string]: string } {
@@ -30421,41 +30632,44 @@ export class QueryConferenceMembersShrinkHeaders extends $tea.Model {
30421
30632
  }
30422
30633
  }
30423
30634
 
30424
- export class QueryConferenceMembersRequest extends $tea.Model {
30635
+ export class QueryConferenceInfoByRoomCodeRequest extends $tea.Model {
30636
+ tenantContext?: QueryConferenceInfoByRoomCodeRequestTenantContext;
30425
30637
  /**
30426
30638
  * @example
30427
- * 300
30639
+ * 20
30428
30640
  */
30429
30641
  maxResults?: number;
30430
30642
  /**
30643
+ * @remarks
30644
+ * This parameter is required.
30645
+ *
30431
30646
  * @example
30432
- * 123000000
30647
+ * 0
30433
30648
  */
30434
30649
  nextToken?: string;
30435
- tenantContext?: QueryConferenceMembersRequestTenantContext;
30436
30650
  /**
30437
30651
  * @remarks
30438
30652
  * This parameter is required.
30439
30653
  *
30440
30654
  * @example
30441
- * 61289fxxx
30655
+ * 583 480 813
30442
30656
  */
30443
- conferenceId?: string;
30657
+ roomCode?: string;
30444
30658
  static names(): { [key: string]: string } {
30445
30659
  return {
30446
- maxResults: 'MaxResults',
30447
- nextToken: 'NextToken',
30448
30660
  tenantContext: 'TenantContext',
30449
- conferenceId: 'conferenceId',
30661
+ maxResults: 'maxResults',
30662
+ nextToken: 'nextToken',
30663
+ roomCode: 'roomCode',
30450
30664
  };
30451
30665
  }
30452
30666
 
30453
30667
  static types(): { [key: string]: any } {
30454
30668
  return {
30669
+ tenantContext: QueryConferenceInfoByRoomCodeRequestTenantContext,
30455
30670
  maxResults: 'number',
30456
30671
  nextToken: 'string',
30457
- tenantContext: QueryConferenceMembersRequestTenantContext,
30458
- conferenceId: 'string',
30672
+ roomCode: 'string',
30459
30673
  };
30460
30674
  }
30461
30675
 
@@ -30464,41 +30678,44 @@ export class QueryConferenceMembersRequest extends $tea.Model {
30464
30678
  }
30465
30679
  }
30466
30680
 
30467
- export class QueryConferenceMembersShrinkRequest extends $tea.Model {
30681
+ export class QueryConferenceInfoByRoomCodeShrinkRequest extends $tea.Model {
30682
+ tenantContextShrink?: string;
30468
30683
  /**
30469
30684
  * @example
30470
- * 300
30685
+ * 20
30471
30686
  */
30472
30687
  maxResults?: number;
30473
30688
  /**
30689
+ * @remarks
30690
+ * This parameter is required.
30691
+ *
30474
30692
  * @example
30475
- * 123000000
30693
+ * 0
30476
30694
  */
30477
30695
  nextToken?: string;
30478
- tenantContextShrink?: string;
30479
30696
  /**
30480
30697
  * @remarks
30481
30698
  * This parameter is required.
30482
30699
  *
30483
30700
  * @example
30484
- * 61289fxxx
30701
+ * 583 480 813
30485
30702
  */
30486
- conferenceId?: string;
30703
+ roomCode?: string;
30487
30704
  static names(): { [key: string]: string } {
30488
30705
  return {
30489
- maxResults: 'MaxResults',
30490
- nextToken: 'NextToken',
30491
30706
  tenantContextShrink: 'TenantContext',
30492
- conferenceId: 'conferenceId',
30707
+ maxResults: 'maxResults',
30708
+ nextToken: 'nextToken',
30709
+ roomCode: 'roomCode',
30493
30710
  };
30494
30711
  }
30495
30712
 
30496
30713
  static types(): { [key: string]: any } {
30497
30714
  return {
30715
+ tenantContextShrink: 'string',
30498
30716
  maxResults: 'number',
30499
30717
  nextToken: 'string',
30500
- tenantContextShrink: 'string',
30501
- conferenceId: 'string',
30718
+ roomCode: 'string',
30502
30719
  };
30503
30720
  }
30504
30721
 
@@ -30507,17 +30724,28 @@ export class QueryConferenceMembersShrinkRequest extends $tea.Model {
30507
30724
  }
30508
30725
  }
30509
30726
 
30510
- export class QueryConferenceMembersResponseBody extends $tea.Model {
30511
- memberModels?: QueryConferenceMembersResponseBodyMemberModels[];
30727
+ export class QueryConferenceInfoByRoomCodeResponseBody extends $tea.Model {
30512
30728
  /**
30513
30729
  * @example
30514
- * 123000000
30730
+ * []
30731
+ */
30732
+ conferenceList?: QueryConferenceInfoByRoomCodeResponseBodyConferenceList[];
30733
+ /**
30734
+ * @example
30735
+ * 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
30736
+ */
30737
+ dingtalkRequestId?: string;
30738
+ /**
30739
+ * @example
30740
+ * true
30741
+ */
30742
+ hasMore?: boolean;
30743
+ /**
30744
+ * @example
30745
+ * 1296
30515
30746
  */
30516
30747
  nextToken?: string;
30517
30748
  /**
30518
- * @remarks
30519
- * requestId
30520
- *
30521
30749
  * @example
30522
30750
  * 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
30523
30751
  */
@@ -30527,21 +30755,39 @@ export class QueryConferenceMembersResponseBody extends $tea.Model {
30527
30755
  * 20
30528
30756
  */
30529
30757
  totalCount?: number;
30758
+ /**
30759
+ * @example
30760
+ * 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
30761
+ */
30762
+ vendorRequestId?: string;
30763
+ /**
30764
+ * @example
30765
+ * dingtalk
30766
+ */
30767
+ vendorType?: string;
30530
30768
  static names(): { [key: string]: string } {
30531
30769
  return {
30532
- memberModels: 'memberModels',
30770
+ conferenceList: 'conferenceList',
30771
+ dingtalkRequestId: 'dingtalkRequestId',
30772
+ hasMore: 'hasMore',
30533
30773
  nextToken: 'nextToken',
30534
30774
  requestId: 'requestId',
30535
30775
  totalCount: 'totalCount',
30776
+ vendorRequestId: 'vendorRequestId',
30777
+ vendorType: 'vendorType',
30536
30778
  };
30537
30779
  }
30538
30780
 
30539
30781
  static types(): { [key: string]: any } {
30540
30782
  return {
30541
- memberModels: { 'type': 'array', 'itemType': QueryConferenceMembersResponseBodyMemberModels },
30783
+ conferenceList: { 'type': 'array', 'itemType': QueryConferenceInfoByRoomCodeResponseBodyConferenceList },
30784
+ dingtalkRequestId: 'string',
30785
+ hasMore: 'boolean',
30542
30786
  nextToken: 'string',
30543
30787
  requestId: 'string',
30544
30788
  totalCount: 'number',
30789
+ vendorRequestId: 'string',
30790
+ vendorType: 'string',
30545
30791
  };
30546
30792
  }
30547
30793
 
@@ -30550,10 +30796,10 @@ export class QueryConferenceMembersResponseBody extends $tea.Model {
30550
30796
  }
30551
30797
  }
30552
30798
 
30553
- export class QueryConferenceMembersResponse extends $tea.Model {
30799
+ export class QueryConferenceInfoByRoomCodeResponse extends $tea.Model {
30554
30800
  headers?: { [key: string]: string };
30555
30801
  statusCode?: number;
30556
- body?: QueryConferenceMembersResponseBody;
30802
+ body?: QueryConferenceInfoByRoomCodeResponseBody;
30557
30803
  static names(): { [key: string]: string } {
30558
30804
  return {
30559
30805
  headers: 'headers',
@@ -30566,7 +30812,7 @@ export class QueryConferenceMembersResponse extends $tea.Model {
30566
30812
  return {
30567
30813
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
30568
30814
  statusCode: 'number',
30569
- body: QueryConferenceMembersResponseBody,
30815
+ body: QueryConferenceInfoByRoomCodeResponseBody,
30570
30816
  };
30571
30817
  }
30572
30818
 
@@ -30575,9 +30821,9 @@ export class QueryConferenceMembersResponse extends $tea.Model {
30575
30821
  }
30576
30822
  }
30577
30823
 
30578
- export class QueryDentryHeaders extends $tea.Model {
30824
+ export class QueryConferenceMembersHeaders extends $tea.Model {
30579
30825
  commonHeaders?: { [key: string]: string };
30580
- accountContext?: QueryDentryHeadersAccountContext;
30826
+ accountContext?: QueryConferenceMembersHeadersAccountContext;
30581
30827
  static names(): { [key: string]: string } {
30582
30828
  return {
30583
30829
  commonHeaders: 'commonHeaders',
@@ -30588,7 +30834,7 @@ export class QueryDentryHeaders extends $tea.Model {
30588
30834
  static types(): { [key: string]: any } {
30589
30835
  return {
30590
30836
  commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
30591
- accountContext: QueryDentryHeadersAccountContext,
30837
+ accountContext: QueryConferenceMembersHeadersAccountContext,
30592
30838
  };
30593
30839
  }
30594
30840
 
@@ -30597,7 +30843,205 @@ export class QueryDentryHeaders extends $tea.Model {
30597
30843
  }
30598
30844
  }
30599
30845
 
30600
- export class QueryDentryShrinkHeaders extends $tea.Model {
30846
+ export class QueryConferenceMembersShrinkHeaders extends $tea.Model {
30847
+ commonHeaders?: { [key: string]: string };
30848
+ accountContextShrink?: string;
30849
+ static names(): { [key: string]: string } {
30850
+ return {
30851
+ commonHeaders: 'commonHeaders',
30852
+ accountContextShrink: 'AccountContext',
30853
+ };
30854
+ }
30855
+
30856
+ static types(): { [key: string]: any } {
30857
+ return {
30858
+ commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
30859
+ accountContextShrink: 'string',
30860
+ };
30861
+ }
30862
+
30863
+ constructor(map?: { [key: string]: any }) {
30864
+ super(map);
30865
+ }
30866
+ }
30867
+
30868
+ export class QueryConferenceMembersRequest extends $tea.Model {
30869
+ /**
30870
+ * @example
30871
+ * 300
30872
+ */
30873
+ maxResults?: number;
30874
+ /**
30875
+ * @example
30876
+ * 123000000
30877
+ */
30878
+ nextToken?: string;
30879
+ tenantContext?: QueryConferenceMembersRequestTenantContext;
30880
+ /**
30881
+ * @remarks
30882
+ * This parameter is required.
30883
+ *
30884
+ * @example
30885
+ * 61289fxxx
30886
+ */
30887
+ conferenceId?: string;
30888
+ static names(): { [key: string]: string } {
30889
+ return {
30890
+ maxResults: 'MaxResults',
30891
+ nextToken: 'NextToken',
30892
+ tenantContext: 'TenantContext',
30893
+ conferenceId: 'conferenceId',
30894
+ };
30895
+ }
30896
+
30897
+ static types(): { [key: string]: any } {
30898
+ return {
30899
+ maxResults: 'number',
30900
+ nextToken: 'string',
30901
+ tenantContext: QueryConferenceMembersRequestTenantContext,
30902
+ conferenceId: 'string',
30903
+ };
30904
+ }
30905
+
30906
+ constructor(map?: { [key: string]: any }) {
30907
+ super(map);
30908
+ }
30909
+ }
30910
+
30911
+ export class QueryConferenceMembersShrinkRequest extends $tea.Model {
30912
+ /**
30913
+ * @example
30914
+ * 300
30915
+ */
30916
+ maxResults?: number;
30917
+ /**
30918
+ * @example
30919
+ * 123000000
30920
+ */
30921
+ nextToken?: string;
30922
+ tenantContextShrink?: string;
30923
+ /**
30924
+ * @remarks
30925
+ * This parameter is required.
30926
+ *
30927
+ * @example
30928
+ * 61289fxxx
30929
+ */
30930
+ conferenceId?: string;
30931
+ static names(): { [key: string]: string } {
30932
+ return {
30933
+ maxResults: 'MaxResults',
30934
+ nextToken: 'NextToken',
30935
+ tenantContextShrink: 'TenantContext',
30936
+ conferenceId: 'conferenceId',
30937
+ };
30938
+ }
30939
+
30940
+ static types(): { [key: string]: any } {
30941
+ return {
30942
+ maxResults: 'number',
30943
+ nextToken: 'string',
30944
+ tenantContextShrink: 'string',
30945
+ conferenceId: 'string',
30946
+ };
30947
+ }
30948
+
30949
+ constructor(map?: { [key: string]: any }) {
30950
+ super(map);
30951
+ }
30952
+ }
30953
+
30954
+ export class QueryConferenceMembersResponseBody extends $tea.Model {
30955
+ memberModels?: QueryConferenceMembersResponseBodyMemberModels[];
30956
+ /**
30957
+ * @example
30958
+ * 123000000
30959
+ */
30960
+ nextToken?: string;
30961
+ /**
30962
+ * @remarks
30963
+ * requestId
30964
+ *
30965
+ * @example
30966
+ * 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
30967
+ */
30968
+ requestId?: string;
30969
+ /**
30970
+ * @example
30971
+ * 20
30972
+ */
30973
+ totalCount?: number;
30974
+ static names(): { [key: string]: string } {
30975
+ return {
30976
+ memberModels: 'memberModels',
30977
+ nextToken: 'nextToken',
30978
+ requestId: 'requestId',
30979
+ totalCount: 'totalCount',
30980
+ };
30981
+ }
30982
+
30983
+ static types(): { [key: string]: any } {
30984
+ return {
30985
+ memberModels: { 'type': 'array', 'itemType': QueryConferenceMembersResponseBodyMemberModels },
30986
+ nextToken: 'string',
30987
+ requestId: 'string',
30988
+ totalCount: 'number',
30989
+ };
30990
+ }
30991
+
30992
+ constructor(map?: { [key: string]: any }) {
30993
+ super(map);
30994
+ }
30995
+ }
30996
+
30997
+ export class QueryConferenceMembersResponse extends $tea.Model {
30998
+ headers?: { [key: string]: string };
30999
+ statusCode?: number;
31000
+ body?: QueryConferenceMembersResponseBody;
31001
+ static names(): { [key: string]: string } {
31002
+ return {
31003
+ headers: 'headers',
31004
+ statusCode: 'statusCode',
31005
+ body: 'body',
31006
+ };
31007
+ }
31008
+
31009
+ static types(): { [key: string]: any } {
31010
+ return {
31011
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
31012
+ statusCode: 'number',
31013
+ body: QueryConferenceMembersResponseBody,
31014
+ };
31015
+ }
31016
+
31017
+ constructor(map?: { [key: string]: any }) {
31018
+ super(map);
31019
+ }
31020
+ }
31021
+
31022
+ export class QueryDentryHeaders extends $tea.Model {
31023
+ commonHeaders?: { [key: string]: string };
31024
+ accountContext?: QueryDentryHeadersAccountContext;
31025
+ static names(): { [key: string]: string } {
31026
+ return {
31027
+ commonHeaders: 'commonHeaders',
31028
+ accountContext: 'AccountContext',
31029
+ };
31030
+ }
31031
+
31032
+ static types(): { [key: string]: any } {
31033
+ return {
31034
+ commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
31035
+ accountContext: QueryDentryHeadersAccountContext,
31036
+ };
31037
+ }
31038
+
31039
+ constructor(map?: { [key: string]: any }) {
31040
+ super(map);
31041
+ }
31042
+ }
31043
+
31044
+ export class QueryDentryShrinkHeaders extends $tea.Model {
30601
31045
  commonHeaders?: { [key: string]: string };
30602
31046
  accountContextShrink?: string;
30603
31047
  static names(): { [key: string]: string } {
@@ -48716,6 +49160,219 @@ export class CreateScheduleConferenceHeadersAccountContext extends $tea.Model {
48716
49160
  }
48717
49161
  }
48718
49162
 
49163
+ export class CreateScheduleConferenceRequestScheduleConfSettingModelMoziConfOpenRecordSetting extends $tea.Model {
49164
+ isFollowHost?: boolean;
49165
+ /**
49166
+ * @example
49167
+ * grid
49168
+ */
49169
+ mode?: string;
49170
+ /**
49171
+ * @example
49172
+ * 0
49173
+ */
49174
+ recordAutoStart?: number;
49175
+ /**
49176
+ * @example
49177
+ * 0
49178
+ */
49179
+ recordAutoStartType?: number;
49180
+ static names(): { [key: string]: string } {
49181
+ return {
49182
+ isFollowHost: 'IsFollowHost',
49183
+ mode: 'Mode',
49184
+ recordAutoStart: 'RecordAutoStart',
49185
+ recordAutoStartType: 'RecordAutoStartType',
49186
+ };
49187
+ }
49188
+
49189
+ static types(): { [key: string]: any } {
49190
+ return {
49191
+ isFollowHost: 'boolean',
49192
+ mode: 'string',
49193
+ recordAutoStart: 'number',
49194
+ recordAutoStartType: 'number',
49195
+ };
49196
+ }
49197
+
49198
+ constructor(map?: { [key: string]: any }) {
49199
+ super(map);
49200
+ }
49201
+ }
49202
+
49203
+ export class CreateScheduleConferenceRequestScheduleConfSettingModelMoziConfVirtualExtraSettingMoziConfExtensionAppSettings extends $tea.Model {
49204
+ /**
49205
+ * @example
49206
+ * 0
49207
+ */
49208
+ autoOpenMode?: number;
49209
+ /**
49210
+ * @example
49211
+ * xxx
49212
+ */
49213
+ coolAppCode?: string;
49214
+ /**
49215
+ * @example
49216
+ * xxx
49217
+ */
49218
+ extensionAppBizData?: string;
49219
+ static names(): { [key: string]: string } {
49220
+ return {
49221
+ autoOpenMode: 'AutoOpenMode',
49222
+ coolAppCode: 'CoolAppCode',
49223
+ extensionAppBizData: 'ExtensionAppBizData',
49224
+ };
49225
+ }
49226
+
49227
+ static types(): { [key: string]: any } {
49228
+ return {
49229
+ autoOpenMode: 'number',
49230
+ coolAppCode: 'string',
49231
+ extensionAppBizData: 'string',
49232
+ };
49233
+ }
49234
+
49235
+ constructor(map?: { [key: string]: any }) {
49236
+ super(map);
49237
+ }
49238
+ }
49239
+
49240
+ export class CreateScheduleConferenceRequestScheduleConfSettingModelMoziConfVirtualExtraSetting extends $tea.Model {
49241
+ /**
49242
+ * @example
49243
+ * 2iPOLbpUNMLzB5LuwggiiqiPwiEiE
49244
+ */
49245
+ cloudRecordOwnerUserId?: string;
49246
+ /**
49247
+ * @example
49248
+ * 0
49249
+ */
49250
+ enableChat?: number;
49251
+ enableWebAnonymousJoin?: boolean;
49252
+ /**
49253
+ * @example
49254
+ * 0
49255
+ */
49256
+ joinBeforeHost?: number;
49257
+ /**
49258
+ * @example
49259
+ * 0
49260
+ */
49261
+ lockMediaStatusMicMute?: number;
49262
+ /**
49263
+ * @example
49264
+ * 0
49265
+ */
49266
+ lockNick?: number;
49267
+ minutesOwnerUserId?: string;
49268
+ moziConfExtensionAppSettings?: CreateScheduleConferenceRequestScheduleConfSettingModelMoziConfVirtualExtraSettingMoziConfExtensionAppSettings[];
49269
+ pushAllMeetingRecords?: boolean;
49270
+ pushCloudRecordCard?: boolean;
49271
+ pushMinutesCard?: boolean;
49272
+ /**
49273
+ * @example
49274
+ * 1
49275
+ */
49276
+ waitingRoom?: number;
49277
+ static names(): { [key: string]: string } {
49278
+ return {
49279
+ cloudRecordOwnerUserId: 'CloudRecordOwnerUserId',
49280
+ enableChat: 'EnableChat',
49281
+ enableWebAnonymousJoin: 'EnableWebAnonymousJoin',
49282
+ joinBeforeHost: 'JoinBeforeHost',
49283
+ lockMediaStatusMicMute: 'LockMediaStatusMicMute',
49284
+ lockNick: 'LockNick',
49285
+ minutesOwnerUserId: 'MinutesOwnerUserId',
49286
+ moziConfExtensionAppSettings: 'MoziConfExtensionAppSettings',
49287
+ pushAllMeetingRecords: 'PushAllMeetingRecords',
49288
+ pushCloudRecordCard: 'PushCloudRecordCard',
49289
+ pushMinutesCard: 'PushMinutesCard',
49290
+ waitingRoom: 'WaitingRoom',
49291
+ };
49292
+ }
49293
+
49294
+ static types(): { [key: string]: any } {
49295
+ return {
49296
+ cloudRecordOwnerUserId: 'string',
49297
+ enableChat: 'number',
49298
+ enableWebAnonymousJoin: 'boolean',
49299
+ joinBeforeHost: 'number',
49300
+ lockMediaStatusMicMute: 'number',
49301
+ lockNick: 'number',
49302
+ minutesOwnerUserId: 'string',
49303
+ moziConfExtensionAppSettings: { 'type': 'array', 'itemType': CreateScheduleConferenceRequestScheduleConfSettingModelMoziConfVirtualExtraSettingMoziConfExtensionAppSettings },
49304
+ pushAllMeetingRecords: 'boolean',
49305
+ pushCloudRecordCard: 'boolean',
49306
+ pushMinutesCard: 'boolean',
49307
+ waitingRoom: 'number',
49308
+ };
49309
+ }
49310
+
49311
+ constructor(map?: { [key: string]: any }) {
49312
+ super(map);
49313
+ }
49314
+ }
49315
+
49316
+ export class CreateScheduleConferenceRequestScheduleConfSettingModel extends $tea.Model {
49317
+ cohostUserIds?: string[];
49318
+ /**
49319
+ * @example
49320
+ * dingc02f685fa06381c44ac5d6980864d335
49321
+ */
49322
+ confAllowedCorpId?: string;
49323
+ /**
49324
+ * @example
49325
+ * 2iPOLbpUNMLzB5LuwggiiqiPwiEiE
49326
+ */
49327
+ hostUserId?: string;
49328
+ /**
49329
+ * @example
49330
+ * 0
49331
+ */
49332
+ lockRoom?: number;
49333
+ moziConfOpenRecordSetting?: CreateScheduleConferenceRequestScheduleConfSettingModelMoziConfOpenRecordSetting;
49334
+ moziConfVirtualExtraSetting?: CreateScheduleConferenceRequestScheduleConfSettingModelMoziConfVirtualExtraSetting;
49335
+ /**
49336
+ * @example
49337
+ * 1
49338
+ */
49339
+ muteOnJoin?: number;
49340
+ /**
49341
+ * @example
49342
+ * 0
49343
+ */
49344
+ screenShareForbidden?: number;
49345
+ static names(): { [key: string]: string } {
49346
+ return {
49347
+ cohostUserIds: 'CohostUserIds',
49348
+ confAllowedCorpId: 'ConfAllowedCorpId',
49349
+ hostUserId: 'HostUserId',
49350
+ lockRoom: 'LockRoom',
49351
+ moziConfOpenRecordSetting: 'MoziConfOpenRecordSetting',
49352
+ moziConfVirtualExtraSetting: 'MoziConfVirtualExtraSetting',
49353
+ muteOnJoin: 'MuteOnJoin',
49354
+ screenShareForbidden: 'ScreenShareForbidden',
49355
+ };
49356
+ }
49357
+
49358
+ static types(): { [key: string]: any } {
49359
+ return {
49360
+ cohostUserIds: { 'type': 'array', 'itemType': 'string' },
49361
+ confAllowedCorpId: 'string',
49362
+ hostUserId: 'string',
49363
+ lockRoom: 'number',
49364
+ moziConfOpenRecordSetting: CreateScheduleConferenceRequestScheduleConfSettingModelMoziConfOpenRecordSetting,
49365
+ moziConfVirtualExtraSetting: CreateScheduleConferenceRequestScheduleConfSettingModelMoziConfVirtualExtraSetting,
49366
+ muteOnJoin: 'number',
49367
+ screenShareForbidden: 'number',
49368
+ };
49369
+ }
49370
+
49371
+ constructor(map?: { [key: string]: any }) {
49372
+ super(map);
49373
+ }
49374
+ }
49375
+
48719
49376
  export class CreateScheduleConferenceRequestTenantContext extends $tea.Model {
48720
49377
  /**
48721
49378
  * @example
@@ -55524,6 +56181,7 @@ export class GetOrgLiveListResponseBodyResultNewLiveLiveList extends $tea.Model
55524
56181
  * nickName
55525
56182
  */
55526
56183
  anchorNickname?: string;
56184
+ anchorUnionId?: string;
55527
56185
  /**
55528
56186
  * @example
55529
56187
  * ersqqdddf
@@ -55557,6 +56215,7 @@ export class GetOrgLiveListResponseBodyResultNewLiveLiveList extends $tea.Model
55557
56215
  static names(): { [key: string]: string } {
55558
56216
  return {
55559
56217
  anchorNickname: 'AnchorNickname',
56218
+ anchorUnionId: 'AnchorUnionId',
55560
56219
  anchorUserId: 'AnchorUserId',
55561
56220
  liveEndTime: 'LiveEndTime',
55562
56221
  liveStartTime: 'LiveStartTime',
@@ -55569,6 +56228,7 @@ export class GetOrgLiveListResponseBodyResultNewLiveLiveList extends $tea.Model
55569
56228
  static types(): { [key: string]: any } {
55570
56229
  return {
55571
56230
  anchorNickname: 'string',
56231
+ anchorUnionId: 'string',
55572
56232
  anchorUserId: 'string',
55573
56233
  liveEndTime: 'number',
55574
56234
  liveStartTime: 'number',
@@ -55640,6 +56300,7 @@ export class GetOrgLiveListResponseBodyResultUpdateLiveLiveList extends $tea.Mod
55640
56300
  * nickName
55641
56301
  */
55642
56302
  anchorNickname?: string;
56303
+ anchorUnionId?: string;
55643
56304
  /**
55644
56305
  * @example
55645
56306
  * 012345
@@ -55668,6 +56329,7 @@ export class GetOrgLiveListResponseBodyResultUpdateLiveLiveList extends $tea.Mod
55668
56329
  static names(): { [key: string]: string } {
55669
56330
  return {
55670
56331
  anchorNickname: 'AnchorNickname',
56332
+ anchorUnionId: 'AnchorUnionId',
55671
56333
  anchorUserId: 'AnchorUserId',
55672
56334
  liveEndTime: 'LiveEndTime',
55673
56335
  liveStartTime: 'LiveStartTime',
@@ -55679,6 +56341,7 @@ export class GetOrgLiveListResponseBodyResultUpdateLiveLiveList extends $tea.Mod
55679
56341
  static types(): { [key: string]: any } {
55680
56342
  return {
55681
56343
  anchorNickname: 'string',
56344
+ anchorUnionId: 'string',
55682
56345
  anchorUserId: 'string',
55683
56346
  liveEndTime: 'number',
55684
56347
  liveStartTime: 'number',
@@ -55773,6 +56436,55 @@ export class GetOrgLiveListResponseBodyResult extends $tea.Model {
55773
56436
  }
55774
56437
  }
55775
56438
 
56439
+ export class GetOrgOrWebOpenDocContentTaskIdHeadersAccountContext extends $tea.Model {
56440
+ /**
56441
+ * @remarks
56442
+ * This parameter is required.
56443
+ *
56444
+ * @example
56445
+ * 012345
56446
+ */
56447
+ accountId?: string;
56448
+ static names(): { [key: string]: string } {
56449
+ return {
56450
+ accountId: 'accountId',
56451
+ };
56452
+ }
56453
+
56454
+ static types(): { [key: string]: any } {
56455
+ return {
56456
+ accountId: 'string',
56457
+ };
56458
+ }
56459
+
56460
+ constructor(map?: { [key: string]: any }) {
56461
+ super(map);
56462
+ }
56463
+ }
56464
+
56465
+ export class GetOrgOrWebOpenDocContentTaskIdRequestTenantContext extends $tea.Model {
56466
+ /**
56467
+ * @example
56468
+ * xxxxxx
56469
+ */
56470
+ tenantId?: string;
56471
+ static names(): { [key: string]: string } {
56472
+ return {
56473
+ tenantId: 'tenantId',
56474
+ };
56475
+ }
56476
+
56477
+ static types(): { [key: string]: any } {
56478
+ return {
56479
+ tenantId: 'string',
56480
+ };
56481
+ }
56482
+
56483
+ constructor(map?: { [key: string]: any }) {
56484
+ super(map);
56485
+ }
56486
+ }
56487
+
55776
56488
  export class GetProcessDefinitionHeadersAccountContext extends $tea.Model {
55777
56489
  /**
55778
56490
  * @remarks
@@ -63812,6 +64524,147 @@ export class QueryConferenceInfoResponseBodyConfInfo extends $tea.Model {
63812
64524
  }
63813
64525
  }
63814
64526
 
64527
+ export class QueryConferenceInfoByRoomCodeHeadersAccountContext extends $tea.Model {
64528
+ /**
64529
+ * @remarks
64530
+ * This parameter is required.
64531
+ *
64532
+ * @example
64533
+ * 012345
64534
+ */
64535
+ accountId?: string;
64536
+ static names(): { [key: string]: string } {
64537
+ return {
64538
+ accountId: 'accountId',
64539
+ };
64540
+ }
64541
+
64542
+ static types(): { [key: string]: any } {
64543
+ return {
64544
+ accountId: 'string',
64545
+ };
64546
+ }
64547
+
64548
+ constructor(map?: { [key: string]: any }) {
64549
+ super(map);
64550
+ }
64551
+ }
64552
+
64553
+ export class QueryConferenceInfoByRoomCodeRequestTenantContext extends $tea.Model {
64554
+ /**
64555
+ * @example
64556
+ * xxxxxx
64557
+ */
64558
+ tenantId?: string;
64559
+ static names(): { [key: string]: string } {
64560
+ return {
64561
+ tenantId: 'tenantId',
64562
+ };
64563
+ }
64564
+
64565
+ static types(): { [key: string]: any } {
64566
+ return {
64567
+ tenantId: 'string',
64568
+ };
64569
+ }
64570
+
64571
+ constructor(map?: { [key: string]: any }) {
64572
+ super(map);
64573
+ }
64574
+ }
64575
+
64576
+ export class QueryConferenceInfoByRoomCodeResponseBodyConferenceList extends $tea.Model {
64577
+ /**
64578
+ * @example
64579
+ * 3
64580
+ */
64581
+ bizType?: string;
64582
+ /**
64583
+ * @example
64584
+ * 1000
64585
+ */
64586
+ confDuration?: number;
64587
+ /**
64588
+ * @example
64589
+ * 636cf59f2b032f014ae32902
64590
+ */
64591
+ conferenceId?: string;
64592
+ /**
64593
+ * @example
64594
+ * 527079
64595
+ */
64596
+ creatorId?: string;
64597
+ creatorNick?: string;
64598
+ /**
64599
+ * @example
64600
+ * 1668087732000
64601
+ */
64602
+ endTime?: number;
64603
+ /**
64604
+ * @example
64605
+ * https//:xxx
64606
+ */
64607
+ externalLinkUrl?: string;
64608
+ /**
64609
+ * @example
64610
+ * 123456789
64611
+ */
64612
+ roomCode?: string;
64613
+ /**
64614
+ * @example
64615
+ * 2d79cbde-b9d8-4256-9788-78b05834944e
64616
+ */
64617
+ scheduleConferenceId?: string;
64618
+ /**
64619
+ * @example
64620
+ * 1668087731000
64621
+ */
64622
+ startTime?: number;
64623
+ /**
64624
+ * @example
64625
+ * 2
64626
+ */
64627
+ status?: number;
64628
+ title?: string;
64629
+ static names(): { [key: string]: string } {
64630
+ return {
64631
+ bizType: 'BizType',
64632
+ confDuration: 'ConfDuration',
64633
+ conferenceId: 'ConferenceId',
64634
+ creatorId: 'CreatorId',
64635
+ creatorNick: 'CreatorNick',
64636
+ endTime: 'EndTime',
64637
+ externalLinkUrl: 'ExternalLinkUrl',
64638
+ roomCode: 'RoomCode',
64639
+ scheduleConferenceId: 'ScheduleConferenceId',
64640
+ startTime: 'StartTime',
64641
+ status: 'Status',
64642
+ title: 'Title',
64643
+ };
64644
+ }
64645
+
64646
+ static types(): { [key: string]: any } {
64647
+ return {
64648
+ bizType: 'string',
64649
+ confDuration: 'number',
64650
+ conferenceId: 'string',
64651
+ creatorId: 'string',
64652
+ creatorNick: 'string',
64653
+ endTime: 'number',
64654
+ externalLinkUrl: 'string',
64655
+ roomCode: 'string',
64656
+ scheduleConferenceId: 'string',
64657
+ startTime: 'number',
64658
+ status: 'number',
64659
+ title: 'string',
64660
+ };
64661
+ }
64662
+
64663
+ constructor(map?: { [key: string]: any }) {
64664
+ super(map);
64665
+ }
64666
+ }
64667
+
63815
64668
  export class QueryConferenceMembersHeadersAccountContext extends $tea.Model {
63816
64669
  /**
63817
64670
  * @remarks
@@ -68745,24 +69598,194 @@ export class StartInstanceHeadersAccountContext extends $tea.Model {
68745
69598
  }
68746
69599
  }
68747
69600
 
68748
- export class StartMinutesHeadersAccountContext extends $tea.Model {
69601
+ export class StartMinutesHeadersAccountContext extends $tea.Model {
69602
+ /**
69603
+ * @remarks
69604
+ * This parameter is required.
69605
+ *
69606
+ * @example
69607
+ * 012345
69608
+ */
69609
+ accountId?: string;
69610
+ static names(): { [key: string]: string } {
69611
+ return {
69612
+ accountId: 'accountId',
69613
+ };
69614
+ }
69615
+
69616
+ static types(): { [key: string]: any } {
69617
+ return {
69618
+ accountId: 'string',
69619
+ };
69620
+ }
69621
+
69622
+ constructor(map?: { [key: string]: any }) {
69623
+ super(map);
69624
+ }
69625
+ }
69626
+
69627
+ export class StartMinutesRequestTenantContext extends $tea.Model {
69628
+ /**
69629
+ * @example
69630
+ * xxxxxx
69631
+ */
69632
+ tenantId?: string;
69633
+ static names(): { [key: string]: string } {
69634
+ return {
69635
+ tenantId: 'tenantId',
69636
+ };
69637
+ }
69638
+
69639
+ static types(): { [key: string]: any } {
69640
+ return {
69641
+ tenantId: 'string',
69642
+ };
69643
+ }
69644
+
69645
+ constructor(map?: { [key: string]: any }) {
69646
+ super(map);
69647
+ }
69648
+ }
69649
+
69650
+ export class StatisticsListByTypeReportHeadersAccountContext extends $tea.Model {
69651
+ /**
69652
+ * @remarks
69653
+ * This parameter is required.
69654
+ *
69655
+ * @example
69656
+ * 012345
69657
+ */
69658
+ accountId?: string;
69659
+ static names(): { [key: string]: string } {
69660
+ return {
69661
+ accountId: 'accountId',
69662
+ };
69663
+ }
69664
+
69665
+ static types(): { [key: string]: any } {
69666
+ return {
69667
+ accountId: 'string',
69668
+ };
69669
+ }
69670
+
69671
+ constructor(map?: { [key: string]: any }) {
69672
+ super(map);
69673
+ }
69674
+ }
69675
+
69676
+ export class StatisticsListByTypeReportRequestTenantContext extends $tea.Model {
69677
+ /**
69678
+ * @example
69679
+ * 1
69680
+ */
69681
+ tenantId?: string;
69682
+ static names(): { [key: string]: string } {
69683
+ return {
69684
+ tenantId: 'tenantId',
69685
+ };
69686
+ }
69687
+
69688
+ static types(): { [key: string]: any } {
69689
+ return {
69690
+ tenantId: 'string',
69691
+ };
69692
+ }
69693
+
69694
+ constructor(map?: { [key: string]: any }) {
69695
+ super(map);
69696
+ }
69697
+ }
69698
+
69699
+ export class StatisticsReportHeadersAccountContext extends $tea.Model {
69700
+ /**
69701
+ * @remarks
69702
+ * This parameter is required.
69703
+ *
69704
+ * @example
69705
+ * 012345
69706
+ */
69707
+ accountId?: string;
69708
+ static names(): { [key: string]: string } {
69709
+ return {
69710
+ accountId: 'accountId',
69711
+ };
69712
+ }
69713
+
69714
+ static types(): { [key: string]: any } {
69715
+ return {
69716
+ accountId: 'string',
69717
+ };
69718
+ }
69719
+
69720
+ constructor(map?: { [key: string]: any }) {
69721
+ super(map);
69722
+ }
69723
+ }
69724
+
69725
+ export class StatisticsReportRequestTenantContext extends $tea.Model {
69726
+ /**
69727
+ * @example
69728
+ * 1
69729
+ */
69730
+ tenantId?: string;
69731
+ static names(): { [key: string]: string } {
69732
+ return {
69733
+ tenantId: 'tenantId',
69734
+ };
69735
+ }
69736
+
69737
+ static types(): { [key: string]: any } {
69738
+ return {
69739
+ tenantId: 'string',
69740
+ };
69741
+ }
69742
+
69743
+ constructor(map?: { [key: string]: any }) {
69744
+ super(map);
69745
+ }
69746
+ }
69747
+
69748
+ export class StopCloudRecordHeadersAccountContext extends $tea.Model {
69749
+ /**
69750
+ * @remarks
69751
+ * This parameter is required.
69752
+ *
69753
+ * @example
69754
+ * 012345
69755
+ */
69756
+ accountId?: string;
69757
+ static names(): { [key: string]: string } {
69758
+ return {
69759
+ accountId: 'accountId',
69760
+ };
69761
+ }
69762
+
69763
+ static types(): { [key: string]: any } {
69764
+ return {
69765
+ accountId: 'string',
69766
+ };
69767
+ }
69768
+
69769
+ constructor(map?: { [key: string]: any }) {
69770
+ super(map);
69771
+ }
69772
+ }
69773
+
69774
+ export class StopCloudRecordRequestTenantContext extends $tea.Model {
68749
69775
  /**
68750
- * @remarks
68751
- * This parameter is required.
68752
- *
68753
69776
  * @example
68754
- * 012345
69777
+ * 1
68755
69778
  */
68756
- accountId?: string;
69779
+ tenantId?: string;
68757
69780
  static names(): { [key: string]: string } {
68758
69781
  return {
68759
- accountId: 'accountId',
69782
+ tenantId: 'tenantId',
68760
69783
  };
68761
69784
  }
68762
69785
 
68763
69786
  static types(): { [key: string]: any } {
68764
69787
  return {
68765
- accountId: 'string',
69788
+ tenantId: 'string',
68766
69789
  };
68767
69790
  }
68768
69791
 
@@ -68771,21 +69794,24 @@ export class StartMinutesHeadersAccountContext extends $tea.Model {
68771
69794
  }
68772
69795
  }
68773
69796
 
68774
- export class StartMinutesRequestTenantContext extends $tea.Model {
69797
+ export class StopMinutesHeadersAccountContext extends $tea.Model {
68775
69798
  /**
69799
+ * @remarks
69800
+ * This parameter is required.
69801
+ *
68776
69802
  * @example
68777
- * xxxxxx
69803
+ * 012345
68778
69804
  */
68779
- tenantId?: string;
69805
+ accountId?: string;
68780
69806
  static names(): { [key: string]: string } {
68781
69807
  return {
68782
- tenantId: 'tenantId',
69808
+ accountId: 'accountId',
68783
69809
  };
68784
69810
  }
68785
69811
 
68786
69812
  static types(): { [key: string]: any } {
68787
69813
  return {
68788
- tenantId: 'string',
69814
+ accountId: 'string',
68789
69815
  };
68790
69816
  }
68791
69817
 
@@ -68794,24 +69820,21 @@ export class StartMinutesRequestTenantContext extends $tea.Model {
68794
69820
  }
68795
69821
  }
68796
69822
 
68797
- export class StatisticsListByTypeReportHeadersAccountContext extends $tea.Model {
69823
+ export class StopMinutesRequestTenantContext extends $tea.Model {
68798
69824
  /**
68799
- * @remarks
68800
- * This parameter is required.
68801
- *
68802
69825
  * @example
68803
- * 012345
69826
+ * xxxxxx
68804
69827
  */
68805
- accountId?: string;
69828
+ tenantId?: string;
68806
69829
  static names(): { [key: string]: string } {
68807
69830
  return {
68808
- accountId: 'accountId',
69831
+ tenantId: 'tenantId',
68809
69832
  };
68810
69833
  }
68811
69834
 
68812
69835
  static types(): { [key: string]: any } {
68813
69836
  return {
68814
- accountId: 'string',
69837
+ tenantId: 'string',
68815
69838
  };
68816
69839
  }
68817
69840
 
@@ -68820,21 +69843,24 @@ export class StatisticsListByTypeReportHeadersAccountContext extends $tea.Model
68820
69843
  }
68821
69844
  }
68822
69845
 
68823
- export class StatisticsListByTypeReportRequestTenantContext extends $tea.Model {
69846
+ export class SubscribeCalendarHeadersAccountContext extends $tea.Model {
68824
69847
  /**
69848
+ * @remarks
69849
+ * This parameter is required.
69850
+ *
68825
69851
  * @example
68826
- * 1
69852
+ * 012345
68827
69853
  */
68828
- tenantId?: string;
69854
+ accountId?: string;
68829
69855
  static names(): { [key: string]: string } {
68830
69856
  return {
68831
- tenantId: 'tenantId',
69857
+ accountId: 'accountId',
68832
69858
  };
68833
69859
  }
68834
69860
 
68835
69861
  static types(): { [key: string]: any } {
68836
69862
  return {
68837
- tenantId: 'string',
69863
+ accountId: 'string',
68838
69864
  };
68839
69865
  }
68840
69866
 
@@ -68843,7 +69869,7 @@ export class StatisticsListByTypeReportRequestTenantContext extends $tea.Model {
68843
69869
  }
68844
69870
  }
68845
69871
 
68846
- export class StatisticsReportHeadersAccountContext extends $tea.Model {
69872
+ export class SyncDingTypeHeadersAccountContext extends $tea.Model {
68847
69873
  /**
68848
69874
  * @remarks
68849
69875
  * This parameter is required.
@@ -68869,10 +69895,10 @@ export class StatisticsReportHeadersAccountContext extends $tea.Model {
68869
69895
  }
68870
69896
  }
68871
69897
 
68872
- export class StatisticsReportRequestTenantContext extends $tea.Model {
69898
+ export class SyncDingTypeRequestTenantContext extends $tea.Model {
68873
69899
  /**
68874
69900
  * @example
68875
- * 1
69901
+ * xxxxxx
68876
69902
  */
68877
69903
  tenantId?: string;
68878
69904
  static names(): { [key: string]: string } {
@@ -68892,7 +69918,7 @@ export class StatisticsReportRequestTenantContext extends $tea.Model {
68892
69918
  }
68893
69919
  }
68894
69920
 
68895
- export class StopCloudRecordHeadersAccountContext extends $tea.Model {
69921
+ export class TerminateInstanceHeadersAccountContext extends $tea.Model {
68896
69922
  /**
68897
69923
  * @remarks
68898
69924
  * This parameter is required.
@@ -68918,21 +69944,24 @@ export class StopCloudRecordHeadersAccountContext extends $tea.Model {
68918
69944
  }
68919
69945
  }
68920
69946
 
68921
- export class StopCloudRecordRequestTenantContext extends $tea.Model {
69947
+ export class TransferTicketHeadersAccountContext extends $tea.Model {
68922
69948
  /**
69949
+ * @remarks
69950
+ * This parameter is required.
69951
+ *
68923
69952
  * @example
68924
- * 1
69953
+ * 012345
68925
69954
  */
68926
- tenantId?: string;
69955
+ accountId?: string;
68927
69956
  static names(): { [key: string]: string } {
68928
69957
  return {
68929
- tenantId: 'tenantId',
69958
+ accountId: 'accountId',
68930
69959
  };
68931
69960
  }
68932
69961
 
68933
69962
  static types(): { [key: string]: any } {
68934
69963
  return {
68935
- tenantId: 'string',
69964
+ accountId: 'string',
68936
69965
  };
68937
69966
  }
68938
69967
 
@@ -68941,24 +69970,27 @@ export class StopCloudRecordRequestTenantContext extends $tea.Model {
68941
69970
  }
68942
69971
  }
68943
69972
 
68944
- export class StopMinutesHeadersAccountContext extends $tea.Model {
69973
+ export class TransferTicketRequestNotify extends $tea.Model {
69974
+ groupNoticeReceiverUserIds?: string[];
68945
69975
  /**
68946
- * @remarks
68947
- * This parameter is required.
68948
- *
68949
69976
  * @example
68950
- * 012345
69977
+ * true
68951
69978
  */
68952
- accountId?: string;
69979
+ noticeAllGroupMember?: boolean;
69980
+ workNoticeReceiverUserIds?: string[];
68953
69981
  static names(): { [key: string]: string } {
68954
69982
  return {
68955
- accountId: 'accountId',
69983
+ groupNoticeReceiverUserIds: 'GroupNoticeReceiverUserIds',
69984
+ noticeAllGroupMember: 'NoticeAllGroupMember',
69985
+ workNoticeReceiverUserIds: 'WorkNoticeReceiverUserIds',
68956
69986
  };
68957
69987
  }
68958
69988
 
68959
69989
  static types(): { [key: string]: any } {
68960
69990
  return {
68961
- accountId: 'string',
69991
+ groupNoticeReceiverUserIds: { 'type': 'array', 'itemType': 'string' },
69992
+ noticeAllGroupMember: 'boolean',
69993
+ workNoticeReceiverUserIds: { 'type': 'array', 'itemType': 'string' },
68962
69994
  };
68963
69995
  }
68964
69996
 
@@ -68967,7 +69999,7 @@ export class StopMinutesHeadersAccountContext extends $tea.Model {
68967
69999
  }
68968
70000
  }
68969
70001
 
68970
- export class StopMinutesRequestTenantContext extends $tea.Model {
70002
+ export class TransferTicketRequestTenantContext extends $tea.Model {
68971
70003
  /**
68972
70004
  * @example
68973
70005
  * xxxxxx
@@ -68990,24 +70022,28 @@ export class StopMinutesRequestTenantContext extends $tea.Model {
68990
70022
  }
68991
70023
  }
68992
70024
 
68993
- export class SubscribeCalendarHeadersAccountContext extends $tea.Model {
70025
+ export class TransferTicketRequestTicketMemoAttachments extends $tea.Model {
68994
70026
  /**
68995
- * @remarks
68996
- * This parameter is required.
68997
- *
68998
70027
  * @example
68999
- * 012345
70028
+ * auto-test-1727143229007.pdf
69000
70029
  */
69001
- accountId?: string;
70030
+ fileName?: string;
70031
+ /**
70032
+ * @example
70033
+ * key1
70034
+ */
70035
+ key?: string;
69002
70036
  static names(): { [key: string]: string } {
69003
70037
  return {
69004
- accountId: 'accountId',
70038
+ fileName: 'FileName',
70039
+ key: 'Key',
69005
70040
  };
69006
70041
  }
69007
70042
 
69008
70043
  static types(): { [key: string]: any } {
69009
70044
  return {
69010
- accountId: 'string',
70045
+ fileName: 'string',
70046
+ key: 'string',
69011
70047
  };
69012
70048
  }
69013
70049
 
@@ -69016,24 +70052,20 @@ export class SubscribeCalendarHeadersAccountContext extends $tea.Model {
69016
70052
  }
69017
70053
  }
69018
70054
 
69019
- export class SyncDingTypeHeadersAccountContext extends $tea.Model {
69020
- /**
69021
- * @remarks
69022
- * This parameter is required.
69023
- *
69024
- * @example
69025
- * 012345
69026
- */
69027
- accountId?: string;
70055
+ export class TransferTicketRequestTicketMemo extends $tea.Model {
70056
+ attachments?: TransferTicketRequestTicketMemoAttachments[];
70057
+ memo?: string;
69028
70058
  static names(): { [key: string]: string } {
69029
70059
  return {
69030
- accountId: 'accountId',
70060
+ attachments: 'Attachments',
70061
+ memo: 'Memo',
69031
70062
  };
69032
70063
  }
69033
70064
 
69034
70065
  static types(): { [key: string]: any } {
69035
70066
  return {
69036
- accountId: 'string',
70067
+ attachments: { 'type': 'array', 'itemType': TransferTicketRequestTicketMemoAttachments },
70068
+ memo: 'string',
69037
70069
  };
69038
70070
  }
69039
70071
 
@@ -69042,21 +70074,24 @@ export class SyncDingTypeHeadersAccountContext extends $tea.Model {
69042
70074
  }
69043
70075
  }
69044
70076
 
69045
- export class SyncDingTypeRequestTenantContext extends $tea.Model {
70077
+ export class UnsubscribeCalendarHeadersAccountContext extends $tea.Model {
69046
70078
  /**
70079
+ * @remarks
70080
+ * This parameter is required.
70081
+ *
69047
70082
  * @example
69048
- * xxxxxx
70083
+ * 012345
69049
70084
  */
69050
- tenantId?: string;
70085
+ accountId?: string;
69051
70086
  static names(): { [key: string]: string } {
69052
70087
  return {
69053
- tenantId: 'tenantId',
70088
+ accountId: 'accountId',
69054
70089
  };
69055
70090
  }
69056
70091
 
69057
70092
  static types(): { [key: string]: any } {
69058
70093
  return {
69059
- tenantId: 'string',
70094
+ accountId: 'string',
69060
70095
  };
69061
70096
  }
69062
70097
 
@@ -69065,7 +70100,7 @@ export class SyncDingTypeRequestTenantContext extends $tea.Model {
69065
70100
  }
69066
70101
  }
69067
70102
 
69068
- export class TerminateInstanceHeadersAccountContext extends $tea.Model {
70103
+ export class UpdateFormDataHeadersAccountContext extends $tea.Model {
69069
70104
  /**
69070
70105
  * @remarks
69071
70106
  * This parameter is required.
@@ -69091,7 +70126,7 @@ export class TerminateInstanceHeadersAccountContext extends $tea.Model {
69091
70126
  }
69092
70127
  }
69093
70128
 
69094
- export class TransferTicketHeadersAccountContext extends $tea.Model {
70129
+ export class UpdateInstanceHeadersAccountContext extends $tea.Model {
69095
70130
  /**
69096
70131
  * @remarks
69097
70132
  * This parameter is required.
@@ -69117,27 +70152,24 @@ export class TransferTicketHeadersAccountContext extends $tea.Model {
69117
70152
  }
69118
70153
  }
69119
70154
 
69120
- export class TransferTicketRequestNotify extends $tea.Model {
69121
- groupNoticeReceiverUserIds?: string[];
70155
+ export class UpdateLiveHeadersAccountContext extends $tea.Model {
69122
70156
  /**
70157
+ * @remarks
70158
+ * This parameter is required.
70159
+ *
69123
70160
  * @example
69124
- * true
70161
+ * 012345
69125
70162
  */
69126
- noticeAllGroupMember?: boolean;
69127
- workNoticeReceiverUserIds?: string[];
70163
+ accountId?: string;
69128
70164
  static names(): { [key: string]: string } {
69129
70165
  return {
69130
- groupNoticeReceiverUserIds: 'GroupNoticeReceiverUserIds',
69131
- noticeAllGroupMember: 'NoticeAllGroupMember',
69132
- workNoticeReceiverUserIds: 'WorkNoticeReceiverUserIds',
70166
+ accountId: 'accountId',
69133
70167
  };
69134
70168
  }
69135
70169
 
69136
70170
  static types(): { [key: string]: any } {
69137
70171
  return {
69138
- groupNoticeReceiverUserIds: { 'type': 'array', 'itemType': 'string' },
69139
- noticeAllGroupMember: 'boolean',
69140
- workNoticeReceiverUserIds: { 'type': 'array', 'itemType': 'string' },
70172
+ accountId: 'string',
69141
70173
  };
69142
70174
  }
69143
70175
 
@@ -69146,10 +70178,10 @@ export class TransferTicketRequestNotify extends $tea.Model {
69146
70178
  }
69147
70179
  }
69148
70180
 
69149
- export class TransferTicketRequestTenantContext extends $tea.Model {
70181
+ export class UpdateLiveRequestTenantContext extends $tea.Model {
69150
70182
  /**
69151
70183
  * @example
69152
- * xxxxxx
70184
+ * 1
69153
70185
  */
69154
70186
  tenantId?: string;
69155
70187
  static names(): { [key: string]: string } {
@@ -69169,28 +70201,24 @@ export class TransferTicketRequestTenantContext extends $tea.Model {
69169
70201
  }
69170
70202
  }
69171
70203
 
69172
- export class TransferTicketRequestTicketMemoAttachments extends $tea.Model {
69173
- /**
69174
- * @example
69175
- * auto-test-1727143229007.pdf
69176
- */
69177
- fileName?: string;
70204
+ export class UpdateMeetingRoomHeadersAccountContext extends $tea.Model {
69178
70205
  /**
70206
+ * @remarks
70207
+ * This parameter is required.
70208
+ *
69179
70209
  * @example
69180
- * key1
70210
+ * 012345
69181
70211
  */
69182
- key?: string;
70212
+ accountId?: string;
69183
70213
  static names(): { [key: string]: string } {
69184
70214
  return {
69185
- fileName: 'FileName',
69186
- key: 'Key',
70215
+ accountId: 'accountId',
69187
70216
  };
69188
70217
  }
69189
70218
 
69190
70219
  static types(): { [key: string]: any } {
69191
70220
  return {
69192
- fileName: 'string',
69193
- key: 'string',
70221
+ accountId: 'string',
69194
70222
  };
69195
70223
  }
69196
70224
 
@@ -69199,20 +70227,23 @@ export class TransferTicketRequestTicketMemoAttachments extends $tea.Model {
69199
70227
  }
69200
70228
  }
69201
70229
 
69202
- export class TransferTicketRequestTicketMemo extends $tea.Model {
69203
- attachments?: TransferTicketRequestTicketMemoAttachments[];
69204
- memo?: string;
70230
+ export class UpdateMeetingRoomRequestReservationAuthorityAuthorizedMembers extends $tea.Model {
70231
+ memberId?: string;
70232
+ memberName?: string;
70233
+ memberType?: string;
69205
70234
  static names(): { [key: string]: string } {
69206
70235
  return {
69207
- attachments: 'Attachments',
69208
- memo: 'Memo',
70236
+ memberId: 'MemberId',
70237
+ memberName: 'MemberName',
70238
+ memberType: 'MemberType',
69209
70239
  };
69210
70240
  }
69211
70241
 
69212
70242
  static types(): { [key: string]: any } {
69213
70243
  return {
69214
- attachments: { 'type': 'array', 'itemType': TransferTicketRequestTicketMemoAttachments },
69215
- memo: 'string',
70244
+ memberId: 'string',
70245
+ memberName: 'string',
70246
+ memberType: 'string',
69216
70247
  };
69217
70248
  }
69218
70249
 
@@ -69221,24 +70252,17 @@ export class TransferTicketRequestTicketMemo extends $tea.Model {
69221
70252
  }
69222
70253
  }
69223
70254
 
69224
- export class UnsubscribeCalendarHeadersAccountContext extends $tea.Model {
69225
- /**
69226
- * @remarks
69227
- * This parameter is required.
69228
- *
69229
- * @example
69230
- * 012345
69231
- */
69232
- accountId?: string;
70255
+ export class UpdateMeetingRoomRequestReservationAuthority extends $tea.Model {
70256
+ authorizedMembers?: UpdateMeetingRoomRequestReservationAuthorityAuthorizedMembers[];
69233
70257
  static names(): { [key: string]: string } {
69234
70258
  return {
69235
- accountId: 'accountId',
70259
+ authorizedMembers: 'AuthorizedMembers',
69236
70260
  };
69237
70261
  }
69238
70262
 
69239
70263
  static types(): { [key: string]: any } {
69240
70264
  return {
69241
- accountId: 'string',
70265
+ authorizedMembers: { 'type': 'array', 'itemType': UpdateMeetingRoomRequestReservationAuthorityAuthorizedMembers },
69242
70266
  };
69243
70267
  }
69244
70268
 
@@ -69247,24 +70271,20 @@ export class UnsubscribeCalendarHeadersAccountContext extends $tea.Model {
69247
70271
  }
69248
70272
  }
69249
70273
 
69250
- export class UpdateFormDataHeadersAccountContext extends $tea.Model {
69251
- /**
69252
- * @remarks
69253
- * This parameter is required.
69254
- *
69255
- * @example
69256
- * 012345
69257
- */
69258
- accountId?: string;
70274
+ export class UpdateMeetingRoomRequestRoomLocation extends $tea.Model {
70275
+ desc?: string;
70276
+ title?: string;
69259
70277
  static names(): { [key: string]: string } {
69260
70278
  return {
69261
- accountId: 'accountId',
70279
+ desc: 'Desc',
70280
+ title: 'Title',
69262
70281
  };
69263
70282
  }
69264
70283
 
69265
70284
  static types(): { [key: string]: any } {
69266
70285
  return {
69267
- accountId: 'string',
70286
+ desc: 'string',
70287
+ title: 'string',
69268
70288
  };
69269
70289
  }
69270
70290
 
@@ -69273,24 +70293,21 @@ export class UpdateFormDataHeadersAccountContext extends $tea.Model {
69273
70293
  }
69274
70294
  }
69275
70295
 
69276
- export class UpdateInstanceHeadersAccountContext extends $tea.Model {
70296
+ export class UpdateMeetingRoomRequestTenantContext extends $tea.Model {
69277
70297
  /**
69278
- * @remarks
69279
- * This parameter is required.
69280
- *
69281
70298
  * @example
69282
- * 012345
70299
+ * xxxxxx
69283
70300
  */
69284
- accountId?: string;
70301
+ tenantId?: string;
69285
70302
  static names(): { [key: string]: string } {
69286
70303
  return {
69287
- accountId: 'accountId',
70304
+ tenantId: 'tenantId',
69288
70305
  };
69289
70306
  }
69290
70307
 
69291
70308
  static types(): { [key: string]: any } {
69292
70309
  return {
69293
- accountId: 'string',
70310
+ tenantId: 'string',
69294
70311
  };
69295
70312
  }
69296
70313
 
@@ -69299,7 +70316,7 @@ export class UpdateInstanceHeadersAccountContext extends $tea.Model {
69299
70316
  }
69300
70317
  }
69301
70318
 
69302
- export class UpdateLiveHeadersAccountContext extends $tea.Model {
70319
+ export class UpdateMeetingRoomGroupHeadersAccountContext extends $tea.Model {
69303
70320
  /**
69304
70321
  * @remarks
69305
70322
  * This parameter is required.
@@ -69325,10 +70342,10 @@ export class UpdateLiveHeadersAccountContext extends $tea.Model {
69325
70342
  }
69326
70343
  }
69327
70344
 
69328
- export class UpdateLiveRequestTenantContext extends $tea.Model {
70345
+ export class UpdateMeetingRoomGroupRequestTenantContext extends $tea.Model {
69329
70346
  /**
69330
70347
  * @example
69331
- * 1
70348
+ * xxxxxx
69332
70349
  */
69333
70350
  tenantId?: string;
69334
70351
  static names(): { [key: string]: string } {
@@ -69348,11 +70365,8 @@ export class UpdateLiveRequestTenantContext extends $tea.Model {
69348
70365
  }
69349
70366
  }
69350
70367
 
69351
- export class UpdateMeetingRoomHeadersAccountContext extends $tea.Model {
70368
+ export class UpdateRangeHeadersAccountContext extends $tea.Model {
69352
70369
  /**
69353
- * @remarks
69354
- * This parameter is required.
69355
- *
69356
70370
  * @example
69357
70371
  * 012345
69358
70372
  */
@@ -69374,113 +70388,35 @@ export class UpdateMeetingRoomHeadersAccountContext extends $tea.Model {
69374
70388
  }
69375
70389
  }
69376
70390
 
69377
- export class UpdateMeetingRoomRequestReservationAuthorityAuthorizedMembers extends $tea.Model {
69378
- memberId?: string;
69379
- memberName?: string;
69380
- memberType?: string;
69381
- static names(): { [key: string]: string } {
69382
- return {
69383
- memberId: 'MemberId',
69384
- memberName: 'MemberName',
69385
- memberType: 'MemberType',
69386
- };
69387
- }
69388
-
69389
- static types(): { [key: string]: any } {
69390
- return {
69391
- memberId: 'string',
69392
- memberName: 'string',
69393
- memberType: 'string',
69394
- };
69395
- }
69396
-
69397
- constructor(map?: { [key: string]: any }) {
69398
- super(map);
69399
- }
69400
- }
69401
-
69402
- export class UpdateMeetingRoomRequestReservationAuthority extends $tea.Model {
69403
- authorizedMembers?: UpdateMeetingRoomRequestReservationAuthorityAuthorizedMembers[];
69404
- static names(): { [key: string]: string } {
69405
- return {
69406
- authorizedMembers: 'AuthorizedMembers',
69407
- };
69408
- }
69409
-
69410
- static types(): { [key: string]: any } {
69411
- return {
69412
- authorizedMembers: { 'type': 'array', 'itemType': UpdateMeetingRoomRequestReservationAuthorityAuthorizedMembers },
69413
- };
69414
- }
69415
-
69416
- constructor(map?: { [key: string]: any }) {
69417
- super(map);
69418
- }
69419
- }
69420
-
69421
- export class UpdateMeetingRoomRequestRoomLocation extends $tea.Model {
69422
- desc?: string;
69423
- title?: string;
69424
- static names(): { [key: string]: string } {
69425
- return {
69426
- desc: 'Desc',
69427
- title: 'Title',
69428
- };
69429
- }
69430
-
69431
- static types(): { [key: string]: any } {
69432
- return {
69433
- desc: 'string',
69434
- title: 'string',
69435
- };
69436
- }
69437
-
69438
- constructor(map?: { [key: string]: any }) {
69439
- super(map);
69440
- }
69441
- }
69442
-
69443
- export class UpdateMeetingRoomRequestTenantContext extends $tea.Model {
70391
+ export class UpdateRangeRequestHyperlinks extends $tea.Model {
69444
70392
  /**
69445
70393
  * @example
69446
- * xxxxxx
70394
+ * path
69447
70395
  */
69448
- tenantId?: string;
69449
- static names(): { [key: string]: string } {
69450
- return {
69451
- tenantId: 'tenantId',
69452
- };
69453
- }
69454
-
69455
- static types(): { [key: string]: any } {
69456
- return {
69457
- tenantId: 'string',
69458
- };
69459
- }
69460
-
69461
- constructor(map?: { [key: string]: any }) {
69462
- super(map);
69463
- }
69464
- }
69465
-
69466
- export class UpdateMeetingRoomGroupHeadersAccountContext extends $tea.Model {
70396
+ type?: string;
69467
70397
  /**
69468
- * @remarks
69469
- * This parameter is required.
69470
- *
69471
70398
  * @example
69472
- * 012345
70399
+ * https://www.dingtalk.com
69473
70400
  */
69474
- accountId?: string;
70401
+ link?: string;
70402
+ /**
70403
+ * @example
70404
+ * test
70405
+ */
70406
+ text?: string;
69475
70407
  static names(): { [key: string]: string } {
69476
70408
  return {
69477
- accountId: 'accountId',
70409
+ type: 'Type',
70410
+ link: 'Link',
70411
+ text: 'Text',
69478
70412
  };
69479
70413
  }
69480
70414
 
69481
70415
  static types(): { [key: string]: any } {
69482
70416
  return {
69483
- accountId: 'string',
70417
+ type: 'string',
70418
+ link: 'string',
70419
+ text: 'string',
69484
70420
  };
69485
70421
  }
69486
70422
 
@@ -69489,10 +70425,10 @@ export class UpdateMeetingRoomGroupHeadersAccountContext extends $tea.Model {
69489
70425
  }
69490
70426
  }
69491
70427
 
69492
- export class UpdateMeetingRoomGroupRequestTenantContext extends $tea.Model {
70428
+ export class UpdateRangeRequestTenantContext extends $tea.Model {
69493
70429
  /**
69494
70430
  * @example
69495
- * xxxxxx
70431
+ * 1
69496
70432
  */
69497
70433
  tenantId?: string;
69498
70434
  static names(): { [key: string]: string } {
@@ -69512,8 +70448,11 @@ export class UpdateMeetingRoomGroupRequestTenantContext extends $tea.Model {
69512
70448
  }
69513
70449
  }
69514
70450
 
69515
- export class UpdateRangeHeadersAccountContext extends $tea.Model {
70451
+ export class UpdateScheduleConfSettingsHeadersAccountContext extends $tea.Model {
69516
70452
  /**
70453
+ * @remarks
70454
+ * This parameter is required.
70455
+ *
69517
70456
  * @example
69518
70457
  * 012345
69519
70458
  */
@@ -69535,35 +70474,38 @@ export class UpdateRangeHeadersAccountContext extends $tea.Model {
69535
70474
  }
69536
70475
  }
69537
70476
 
69538
- export class UpdateRangeRequestHyperlinks extends $tea.Model {
70477
+ export class UpdateScheduleConfSettingsRequestScheduleConfSettingModelMoziConfOpenRecordSetting extends $tea.Model {
70478
+ isFollowHost?: boolean;
69539
70479
  /**
69540
70480
  * @example
69541
- * path
70481
+ * grid
69542
70482
  */
69543
- type?: string;
70483
+ mode?: string;
69544
70484
  /**
69545
70485
  * @example
69546
- * https://www.dingtalk.com
70486
+ * 0
69547
70487
  */
69548
- link?: string;
70488
+ recordAutoStart?: number;
69549
70489
  /**
69550
70490
  * @example
69551
- * test
70491
+ * 0
69552
70492
  */
69553
- text?: string;
70493
+ recordAutoStartType?: number;
69554
70494
  static names(): { [key: string]: string } {
69555
70495
  return {
69556
- type: 'Type',
69557
- link: 'Link',
69558
- text: 'Text',
70496
+ isFollowHost: 'IsFollowHost',
70497
+ mode: 'Mode',
70498
+ recordAutoStart: 'RecordAutoStart',
70499
+ recordAutoStartType: 'RecordAutoStartType',
69559
70500
  };
69560
70501
  }
69561
70502
 
69562
70503
  static types(): { [key: string]: any } {
69563
70504
  return {
69564
- type: 'string',
69565
- link: 'string',
69566
- text: 'string',
70505
+ isFollowHost: 'boolean',
70506
+ mode: 'string',
70507
+ recordAutoStart: 'number',
70508
+ recordAutoStartType: 'number',
69567
70509
  };
69568
70510
  }
69569
70511
 
@@ -69572,47 +70514,35 @@ export class UpdateRangeRequestHyperlinks extends $tea.Model {
69572
70514
  }
69573
70515
  }
69574
70516
 
69575
- export class UpdateRangeRequestTenantContext extends $tea.Model {
70517
+ export class UpdateScheduleConfSettingsRequestScheduleConfSettingModelMoziConfVirtualExtraSettingMoziConfExtensionAppSettings extends $tea.Model {
69576
70518
  /**
69577
70519
  * @example
69578
- * 1
70520
+ * 0
69579
70521
  */
69580
- tenantId?: string;
69581
- static names(): { [key: string]: string } {
69582
- return {
69583
- tenantId: 'tenantId',
69584
- };
69585
- }
69586
-
69587
- static types(): { [key: string]: any } {
69588
- return {
69589
- tenantId: 'string',
69590
- };
69591
- }
69592
-
69593
- constructor(map?: { [key: string]: any }) {
69594
- super(map);
69595
- }
69596
- }
69597
-
69598
- export class UpdateScheduleConfSettingsHeadersAccountContext extends $tea.Model {
70522
+ autoOpenMode?: number;
69599
70523
  /**
69600
- * @remarks
69601
- * This parameter is required.
69602
- *
69603
70524
  * @example
69604
- * 012345
70525
+ * xxxx
69605
70526
  */
69606
- accountId?: string;
70527
+ coolAppCode?: string;
70528
+ /**
70529
+ * @example
70530
+ * xxx
70531
+ */
70532
+ extensionAppBizData?: string;
69607
70533
  static names(): { [key: string]: string } {
69608
70534
  return {
69609
- accountId: 'accountId',
70535
+ autoOpenMode: 'AutoOpenMode',
70536
+ coolAppCode: 'CoolAppCode',
70537
+ extensionAppBizData: 'ExtensionAppBizData',
69610
70538
  };
69611
70539
  }
69612
70540
 
69613
70541
  static types(): { [key: string]: any } {
69614
70542
  return {
69615
- accountId: 'string',
70543
+ autoOpenMode: 'number',
70544
+ coolAppCode: 'string',
70545
+ extensionAppBizData: 'string',
69616
70546
  };
69617
70547
  }
69618
70548
 
@@ -69645,6 +70575,7 @@ export class UpdateScheduleConfSettingsRequestScheduleConfSettingModelMoziConfVi
69645
70575
  */
69646
70576
  lockNick?: number;
69647
70577
  minutesOwnerUserId?: string;
70578
+ moziConfExtensionAppSettings?: UpdateScheduleConfSettingsRequestScheduleConfSettingModelMoziConfVirtualExtraSettingMoziConfExtensionAppSettings[];
69648
70579
  pushAllMeetingRecords?: boolean;
69649
70580
  pushCloudRecordCard?: boolean;
69650
70581
  pushMinutesCard?: boolean;
@@ -69662,6 +70593,7 @@ export class UpdateScheduleConfSettingsRequestScheduleConfSettingModelMoziConfVi
69662
70593
  lockMediaStatusMicMute: 'LockMediaStatusMicMute',
69663
70594
  lockNick: 'LockNick',
69664
70595
  minutesOwnerUserId: 'MinutesOwnerUserId',
70596
+ moziConfExtensionAppSettings: 'MoziConfExtensionAppSettings',
69665
70597
  pushAllMeetingRecords: 'PushAllMeetingRecords',
69666
70598
  pushCloudRecordCard: 'PushCloudRecordCard',
69667
70599
  pushMinutesCard: 'PushMinutesCard',
@@ -69678,6 +70610,7 @@ export class UpdateScheduleConfSettingsRequestScheduleConfSettingModelMoziConfVi
69678
70610
  lockMediaStatusMicMute: 'number',
69679
70611
  lockNick: 'number',
69680
70612
  minutesOwnerUserId: 'string',
70613
+ moziConfExtensionAppSettings: { 'type': 'array', 'itemType': UpdateScheduleConfSettingsRequestScheduleConfSettingModelMoziConfVirtualExtraSettingMoziConfExtensionAppSettings },
69681
70614
  pushAllMeetingRecords: 'boolean',
69682
70615
  pushCloudRecordCard: 'boolean',
69683
70616
  pushMinutesCard: 'boolean',
@@ -69707,6 +70640,7 @@ export class UpdateScheduleConfSettingsRequestScheduleConfSettingModel extends $
69707
70640
  * 1
69708
70641
  */
69709
70642
  lockRoom?: number;
70643
+ moziConfOpenRecordSetting?: UpdateScheduleConfSettingsRequestScheduleConfSettingModelMoziConfOpenRecordSetting;
69710
70644
  moziConfVirtualExtraSetting?: UpdateScheduleConfSettingsRequestScheduleConfSettingModelMoziConfVirtualExtraSetting;
69711
70645
  /**
69712
70646
  * @example
@@ -69724,6 +70658,7 @@ export class UpdateScheduleConfSettingsRequestScheduleConfSettingModel extends $
69724
70658
  confAllowedCorpId: 'ConfAllowedCorpId',
69725
70659
  hostUserId: 'HostUserId',
69726
70660
  lockRoom: 'LockRoom',
70661
+ moziConfOpenRecordSetting: 'MoziConfOpenRecordSetting',
69727
70662
  moziConfVirtualExtraSetting: 'MoziConfVirtualExtraSetting',
69728
70663
  muteOnJoin: 'MuteOnJoin',
69729
70664
  screenShareForbidden: 'ScreenShareForbidden',
@@ -69736,6 +70671,7 @@ export class UpdateScheduleConfSettingsRequestScheduleConfSettingModel extends $
69736
70671
  confAllowedCorpId: 'string',
69737
70672
  hostUserId: 'string',
69738
70673
  lockRoom: 'number',
70674
+ moziConfOpenRecordSetting: UpdateScheduleConfSettingsRequestScheduleConfSettingModelMoziConfOpenRecordSetting,
69739
70675
  moziConfVirtualExtraSetting: UpdateScheduleConfSettingsRequestScheduleConfSettingModelMoziConfVirtualExtraSetting,
69740
70676
  muteOnJoin: 'number',
69741
70677
  screenShareForbidden: 'number',
@@ -73196,6 +74132,10 @@ export default class Client extends OpenApi {
73196
74132
  body["ParticipantIds"] = request.participantIdsShrink;
73197
74133
  }
73198
74134
 
74135
+ if (!Util.isUnset(request.reminderTimeStamp)) {
74136
+ body["ReminderTimeStamp"] = request.reminderTimeStamp;
74137
+ }
74138
+
73199
74139
  if (!Util.isUnset(request.subject)) {
73200
74140
  body["Subject"] = request.subject;
73201
74141
  }
@@ -73499,6 +74439,10 @@ export default class Client extends OpenApi {
73499
74439
  headers.accountContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpHeader.accountContext, "AccountContext", "json");
73500
74440
  }
73501
74441
 
74442
+ if (!Util.isUnset(tmpReq.scheduleConfSettingModel)) {
74443
+ request.scheduleConfSettingModelShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.scheduleConfSettingModel, "ScheduleConfSettingModel", "json");
74444
+ }
74445
+
73502
74446
  if (!Util.isUnset(tmpReq.tenantContext)) {
73503
74447
  request.tenantContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.tenantContext, "TenantContext", "json");
73504
74448
  }
@@ -73508,6 +74452,10 @@ export default class Client extends OpenApi {
73508
74452
  body["EndTime"] = request.endTime;
73509
74453
  }
73510
74454
 
74455
+ if (!Util.isUnset(request.scheduleConfSettingModelShrink)) {
74456
+ body["ScheduleConfSettingModel"] = request.scheduleConfSettingModelShrink;
74457
+ }
74458
+
73511
74459
  if (!Util.isUnset(request.startTime)) {
73512
74460
  body["StartTime"] = request.startTime;
73513
74461
  }
@@ -78899,6 +79847,84 @@ export default class Client extends OpenApi {
78899
79847
  return await this.getOrgLiveListWithOptions(request, headers, runtime);
78900
79848
  }
78901
79849
 
79850
+ /**
79851
+ * 委托权限获取组织或者互联网公开文档内容taskId
79852
+ *
79853
+ * @param tmpReq - GetOrgOrWebOpenDocContentTaskIdRequest
79854
+ * @param tmpHeader - GetOrgOrWebOpenDocContentTaskIdHeaders
79855
+ * @param runtime - runtime options for this request RuntimeOptions
79856
+ * @returns GetOrgOrWebOpenDocContentTaskIdResponse
79857
+ */
79858
+ async getOrgOrWebOpenDocContentTaskIdWithOptions(tmpReq: GetOrgOrWebOpenDocContentTaskIdRequest, tmpHeader: GetOrgOrWebOpenDocContentTaskIdHeaders, runtime: $Util.RuntimeOptions): Promise<GetOrgOrWebOpenDocContentTaskIdResponse> {
79859
+ Util.validateModel(tmpReq);
79860
+ let request = new GetOrgOrWebOpenDocContentTaskIdShrinkRequest({ });
79861
+ OpenApiUtil.convert(tmpReq, request);
79862
+ let headers = new GetOrgOrWebOpenDocContentTaskIdShrinkHeaders({ });
79863
+ OpenApiUtil.convert(tmpHeader, headers);
79864
+ if (!Util.isUnset(tmpHeader.accountContext)) {
79865
+ headers.accountContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpHeader.accountContext, "AccountContext", "json");
79866
+ }
79867
+
79868
+ if (!Util.isUnset(tmpReq.tenantContext)) {
79869
+ request.tenantContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.tenantContext, "TenantContext", "json");
79870
+ }
79871
+
79872
+ let body : {[key: string ]: any} = { };
79873
+ if (!Util.isUnset(request.dentryUuid)) {
79874
+ body["DentryUuid"] = request.dentryUuid;
79875
+ }
79876
+
79877
+ if (!Util.isUnset(request.generateCp)) {
79878
+ body["GenerateCp"] = request.generateCp;
79879
+ }
79880
+
79881
+ if (!Util.isUnset(request.targetFormat)) {
79882
+ body["TargetFormat"] = request.targetFormat;
79883
+ }
79884
+
79885
+ if (!Util.isUnset(request.tenantContextShrink)) {
79886
+ body["TenantContext"] = request.tenantContextShrink;
79887
+ }
79888
+
79889
+ let realHeaders : {[key: string ]: string} = { };
79890
+ if (!Util.isUnset(headers.commonHeaders)) {
79891
+ realHeaders = headers.commonHeaders;
79892
+ }
79893
+
79894
+ if (!Util.isUnset(headers.accountContextShrink)) {
79895
+ realHeaders["AccountContext"] = Util.toJSONString(headers.accountContextShrink);
79896
+ }
79897
+
79898
+ let req = new $OpenApi.OpenApiRequest({
79899
+ headers: realHeaders,
79900
+ body: OpenApiUtil.parseToMap(body),
79901
+ });
79902
+ let params = new $OpenApi.Params({
79903
+ action: "GetOrgOrWebOpenDocContentTaskId",
79904
+ version: "2023-04-26",
79905
+ protocol: "HTTPS",
79906
+ pathname: `/dingtalk/v2/documents/getOrgOrWebOpenDocContentTaskId`,
79907
+ method: "POST",
79908
+ authType: "AK",
79909
+ style: "ROA",
79910
+ reqBodyType: "formData",
79911
+ bodyType: "json",
79912
+ });
79913
+ return $tea.cast<GetOrgOrWebOpenDocContentTaskIdResponse>(await this.callApi(params, req, runtime), new GetOrgOrWebOpenDocContentTaskIdResponse({}));
79914
+ }
79915
+
79916
+ /**
79917
+ * 委托权限获取组织或者互联网公开文档内容taskId
79918
+ *
79919
+ * @param request - GetOrgOrWebOpenDocContentTaskIdRequest
79920
+ * @returns GetOrgOrWebOpenDocContentTaskIdResponse
79921
+ */
79922
+ async getOrgOrWebOpenDocContentTaskId(request: GetOrgOrWebOpenDocContentTaskIdRequest): Promise<GetOrgOrWebOpenDocContentTaskIdResponse> {
79923
+ let runtime = new $Util.RuntimeOptions({ });
79924
+ let headers = new GetOrgOrWebOpenDocContentTaskIdHeaders({ });
79925
+ return await this.getOrgOrWebOpenDocContentTaskIdWithOptions(request, headers, runtime);
79926
+ }
79927
+
78902
79928
  /**
78903
79929
  * 获取流程定义
78904
79930
  *
@@ -82661,6 +83687,84 @@ export default class Client extends OpenApi {
82661
83687
  return await this.queryConferenceInfoWithOptions(request, headers, runtime);
82662
83688
  }
82663
83689
 
83690
+ /**
83691
+ * 根据会议码查询视频会议信息
83692
+ *
83693
+ * @param tmpReq - QueryConferenceInfoByRoomCodeRequest
83694
+ * @param tmpHeader - QueryConferenceInfoByRoomCodeHeaders
83695
+ * @param runtime - runtime options for this request RuntimeOptions
83696
+ * @returns QueryConferenceInfoByRoomCodeResponse
83697
+ */
83698
+ async queryConferenceInfoByRoomCodeWithOptions(tmpReq: QueryConferenceInfoByRoomCodeRequest, tmpHeader: QueryConferenceInfoByRoomCodeHeaders, runtime: $Util.RuntimeOptions): Promise<QueryConferenceInfoByRoomCodeResponse> {
83699
+ Util.validateModel(tmpReq);
83700
+ let request = new QueryConferenceInfoByRoomCodeShrinkRequest({ });
83701
+ OpenApiUtil.convert(tmpReq, request);
83702
+ let headers = new QueryConferenceInfoByRoomCodeShrinkHeaders({ });
83703
+ OpenApiUtil.convert(tmpHeader, headers);
83704
+ if (!Util.isUnset(tmpHeader.accountContext)) {
83705
+ headers.accountContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpHeader.accountContext, "AccountContext", "json");
83706
+ }
83707
+
83708
+ if (!Util.isUnset(tmpReq.tenantContext)) {
83709
+ request.tenantContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.tenantContext, "TenantContext", "json");
83710
+ }
83711
+
83712
+ let body : {[key: string ]: any} = { };
83713
+ if (!Util.isUnset(request.tenantContextShrink)) {
83714
+ body["TenantContext"] = request.tenantContextShrink;
83715
+ }
83716
+
83717
+ if (!Util.isUnset(request.maxResults)) {
83718
+ body["maxResults"] = request.maxResults;
83719
+ }
83720
+
83721
+ if (!Util.isUnset(request.nextToken)) {
83722
+ body["nextToken"] = request.nextToken;
83723
+ }
83724
+
83725
+ if (!Util.isUnset(request.roomCode)) {
83726
+ body["roomCode"] = request.roomCode;
83727
+ }
83728
+
83729
+ let realHeaders : {[key: string ]: string} = { };
83730
+ if (!Util.isUnset(headers.commonHeaders)) {
83731
+ realHeaders = headers.commonHeaders;
83732
+ }
83733
+
83734
+ if (!Util.isUnset(headers.accountContextShrink)) {
83735
+ realHeaders["AccountContext"] = Util.toJSONString(headers.accountContextShrink);
83736
+ }
83737
+
83738
+ let req = new $OpenApi.OpenApiRequest({
83739
+ headers: realHeaders,
83740
+ body: OpenApiUtil.parseToMap(body),
83741
+ });
83742
+ let params = new $OpenApi.Params({
83743
+ action: "QueryConferenceInfoByRoomCode",
83744
+ version: "2023-04-26",
83745
+ protocol: "HTTPS",
83746
+ pathname: `/dingtalk/v1/ysp/queryConferenceInfoByRoomCode`,
83747
+ method: "POST",
83748
+ authType: "AK",
83749
+ style: "ROA",
83750
+ reqBodyType: "formData",
83751
+ bodyType: "json",
83752
+ });
83753
+ return $tea.cast<QueryConferenceInfoByRoomCodeResponse>(await this.callApi(params, req, runtime), new QueryConferenceInfoByRoomCodeResponse({}));
83754
+ }
83755
+
83756
+ /**
83757
+ * 根据会议码查询视频会议信息
83758
+ *
83759
+ * @param request - QueryConferenceInfoByRoomCodeRequest
83760
+ * @returns QueryConferenceInfoByRoomCodeResponse
83761
+ */
83762
+ async queryConferenceInfoByRoomCode(request: QueryConferenceInfoByRoomCodeRequest): Promise<QueryConferenceInfoByRoomCodeResponse> {
83763
+ let runtime = new $Util.RuntimeOptions({ });
83764
+ let headers = new QueryConferenceInfoByRoomCodeHeaders({ });
83765
+ return await this.queryConferenceInfoByRoomCodeWithOptions(request, headers, runtime);
83766
+ }
83767
+
82664
83768
  /**
82665
83769
  * 查询视频会议成员
82666
83770
  *