@alicloud/aliding20230426 2.13.0 → 2.14.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
@@ -19938,6 +19938,147 @@ export class QueryMeetingRoomListResponse extends $tea.Model {
19938
19938
  }
19939
19939
  }
19940
19940
 
19941
+ export class QueryMinutesHeaders extends $tea.Model {
19942
+ commonHeaders?: { [key: string]: string };
19943
+ accountContext?: QueryMinutesHeadersAccountContext;
19944
+ static names(): { [key: string]: string } {
19945
+ return {
19946
+ commonHeaders: 'commonHeaders',
19947
+ accountContext: 'AccountContext',
19948
+ };
19949
+ }
19950
+
19951
+ static types(): { [key: string]: any } {
19952
+ return {
19953
+ commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
19954
+ accountContext: QueryMinutesHeadersAccountContext,
19955
+ };
19956
+ }
19957
+
19958
+ constructor(map?: { [key: string]: any }) {
19959
+ super(map);
19960
+ }
19961
+ }
19962
+
19963
+ export class QueryMinutesShrinkHeaders extends $tea.Model {
19964
+ commonHeaders?: { [key: string]: string };
19965
+ accountContextShrink?: string;
19966
+ static names(): { [key: string]: string } {
19967
+ return {
19968
+ commonHeaders: 'commonHeaders',
19969
+ accountContextShrink: 'AccountContext',
19970
+ };
19971
+ }
19972
+
19973
+ static types(): { [key: string]: any } {
19974
+ return {
19975
+ commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
19976
+ accountContextShrink: 'string',
19977
+ };
19978
+ }
19979
+
19980
+ constructor(map?: { [key: string]: any }) {
19981
+ super(map);
19982
+ }
19983
+ }
19984
+
19985
+ export class QueryMinutesRequest extends $tea.Model {
19986
+ tenantContext?: QueryMinutesRequestTenantContext;
19987
+ conferenceId?: string;
19988
+ static names(): { [key: string]: string } {
19989
+ return {
19990
+ tenantContext: 'TenantContext',
19991
+ conferenceId: 'conferenceId',
19992
+ };
19993
+ }
19994
+
19995
+ static types(): { [key: string]: any } {
19996
+ return {
19997
+ tenantContext: QueryMinutesRequestTenantContext,
19998
+ conferenceId: 'string',
19999
+ };
20000
+ }
20001
+
20002
+ constructor(map?: { [key: string]: any }) {
20003
+ super(map);
20004
+ }
20005
+ }
20006
+
20007
+ export class QueryMinutesShrinkRequest extends $tea.Model {
20008
+ tenantContextShrink?: string;
20009
+ conferenceId?: string;
20010
+ static names(): { [key: string]: string } {
20011
+ return {
20012
+ tenantContextShrink: 'TenantContext',
20013
+ conferenceId: 'conferenceId',
20014
+ };
20015
+ }
20016
+
20017
+ static types(): { [key: string]: any } {
20018
+ return {
20019
+ tenantContextShrink: 'string',
20020
+ conferenceId: 'string',
20021
+ };
20022
+ }
20023
+
20024
+ constructor(map?: { [key: string]: any }) {
20025
+ super(map);
20026
+ }
20027
+ }
20028
+
20029
+ export class QueryMinutesResponseBody extends $tea.Model {
20030
+ audioList?: QueryMinutesResponseBodyAudioList[];
20031
+ requestId?: string;
20032
+ vendorRequestId?: string;
20033
+ vendorType?: string;
20034
+ static names(): { [key: string]: string } {
20035
+ return {
20036
+ audioList: 'audioList',
20037
+ requestId: 'requestId',
20038
+ vendorRequestId: 'vendorRequestId',
20039
+ vendorType: 'vendorType',
20040
+ };
20041
+ }
20042
+
20043
+ static types(): { [key: string]: any } {
20044
+ return {
20045
+ audioList: { 'type': 'array', 'itemType': QueryMinutesResponseBodyAudioList },
20046
+ requestId: 'string',
20047
+ vendorRequestId: 'string',
20048
+ vendorType: 'string',
20049
+ };
20050
+ }
20051
+
20052
+ constructor(map?: { [key: string]: any }) {
20053
+ super(map);
20054
+ }
20055
+ }
20056
+
20057
+ export class QueryMinutesResponse extends $tea.Model {
20058
+ headers?: { [key: string]: string };
20059
+ statusCode?: number;
20060
+ body?: QueryMinutesResponseBody;
20061
+ static names(): { [key: string]: string } {
20062
+ return {
20063
+ headers: 'headers',
20064
+ statusCode: 'statusCode',
20065
+ body: 'body',
20066
+ };
20067
+ }
20068
+
20069
+ static types(): { [key: string]: any } {
20070
+ return {
20071
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
20072
+ statusCode: 'number',
20073
+ body: QueryMinutesResponseBody,
20074
+ };
20075
+ }
20076
+
20077
+ constructor(map?: { [key: string]: any }) {
20078
+ super(map);
20079
+ }
20080
+ }
20081
+
19941
20082
  export class QueryMinutesSummaryHeaders extends $tea.Model {
19942
20083
  commonHeaders?: { [key: string]: string };
19943
20084
  accountContext?: QueryMinutesSummaryHeadersAccountContext;
@@ -24458,9 +24599,9 @@ export class StartInstanceResponse extends $tea.Model {
24458
24599
  }
24459
24600
  }
24460
24601
 
24461
- export class StatisticsListByTypeReportHeaders extends $tea.Model {
24602
+ export class StartMinutesHeaders extends $tea.Model {
24462
24603
  commonHeaders?: { [key: string]: string };
24463
- accountContext?: StatisticsListByTypeReportHeadersAccountContext;
24604
+ accountContext?: StartMinutesHeadersAccountContext;
24464
24605
  static names(): { [key: string]: string } {
24465
24606
  return {
24466
24607
  commonHeaders: 'commonHeaders',
@@ -24471,7 +24612,7 @@ export class StatisticsListByTypeReportHeaders extends $tea.Model {
24471
24612
  static types(): { [key: string]: any } {
24472
24613
  return {
24473
24614
  commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
24474
- accountContext: StatisticsListByTypeReportHeadersAccountContext,
24615
+ accountContext: StartMinutesHeadersAccountContext,
24475
24616
  };
24476
24617
  }
24477
24618
 
@@ -24480,7 +24621,7 @@ export class StatisticsListByTypeReportHeaders extends $tea.Model {
24480
24621
  }
24481
24622
  }
24482
24623
 
24483
- export class StatisticsListByTypeReportShrinkHeaders extends $tea.Model {
24624
+ export class StartMinutesShrinkHeaders extends $tea.Model {
24484
24625
  commonHeaders?: { [key: string]: string };
24485
24626
  accountContextShrink?: string;
24486
24627
  static names(): { [key: string]: string } {
@@ -24502,29 +24643,26 @@ export class StatisticsListByTypeReportShrinkHeaders extends $tea.Model {
24502
24643
  }
24503
24644
  }
24504
24645
 
24505
- export class StatisticsListByTypeReportRequest extends $tea.Model {
24506
- offset?: number;
24507
- reportId?: string;
24508
- size?: number;
24509
- tenantContext?: StatisticsListByTypeReportRequestTenantContext;
24510
- type?: number;
24646
+ export class StartMinutesRequest extends $tea.Model {
24647
+ tenantContext?: StartMinutesRequestTenantContext;
24648
+ conferenceId?: string;
24649
+ ownerUserId?: string;
24650
+ recordAudio?: boolean;
24511
24651
  static names(): { [key: string]: string } {
24512
24652
  return {
24513
- offset: 'Offset',
24514
- reportId: 'ReportId',
24515
- size: 'Size',
24516
24653
  tenantContext: 'TenantContext',
24517
- type: 'Type',
24654
+ conferenceId: 'conferenceId',
24655
+ ownerUserId: 'ownerUserId',
24656
+ recordAudio: 'recordAudio',
24518
24657
  };
24519
24658
  }
24520
24659
 
24521
24660
  static types(): { [key: string]: any } {
24522
24661
  return {
24523
- offset: 'number',
24524
- reportId: 'string',
24525
- size: 'number',
24526
- tenantContext: StatisticsListByTypeReportRequestTenantContext,
24527
- type: 'number',
24662
+ tenantContext: StartMinutesRequestTenantContext,
24663
+ conferenceId: 'string',
24664
+ ownerUserId: 'string',
24665
+ recordAudio: 'boolean',
24528
24666
  };
24529
24667
  }
24530
24668
 
@@ -24533,29 +24671,26 @@ export class StatisticsListByTypeReportRequest extends $tea.Model {
24533
24671
  }
24534
24672
  }
24535
24673
 
24536
- export class StatisticsListByTypeReportShrinkRequest extends $tea.Model {
24537
- offset?: number;
24538
- reportId?: string;
24539
- size?: number;
24674
+ export class StartMinutesShrinkRequest extends $tea.Model {
24540
24675
  tenantContextShrink?: string;
24541
- type?: number;
24676
+ conferenceId?: string;
24677
+ ownerUserId?: string;
24678
+ recordAudio?: boolean;
24542
24679
  static names(): { [key: string]: string } {
24543
24680
  return {
24544
- offset: 'Offset',
24545
- reportId: 'ReportId',
24546
- size: 'Size',
24547
24681
  tenantContextShrink: 'TenantContext',
24548
- type: 'Type',
24682
+ conferenceId: 'conferenceId',
24683
+ ownerUserId: 'ownerUserId',
24684
+ recordAudio: 'recordAudio',
24549
24685
  };
24550
24686
  }
24551
24687
 
24552
24688
  static types(): { [key: string]: any } {
24553
24689
  return {
24554
- offset: 'number',
24555
- reportId: 'string',
24556
- size: 'number',
24557
24690
  tenantContextShrink: 'string',
24558
- type: 'number',
24691
+ conferenceId: 'string',
24692
+ ownerUserId: 'string',
24693
+ recordAudio: 'boolean',
24559
24694
  };
24560
24695
  }
24561
24696
 
@@ -24564,26 +24699,26 @@ export class StatisticsListByTypeReportShrinkRequest extends $tea.Model {
24564
24699
  }
24565
24700
  }
24566
24701
 
24567
- export class StatisticsListByTypeReportResponseBody extends $tea.Model {
24568
- hasMore?: boolean;
24569
- nextCursor?: number;
24702
+ export class StartMinutesResponseBody extends $tea.Model {
24703
+ code?: string;
24570
24704
  requestId?: string;
24571
- useridList?: string[];
24705
+ vendorRequestId?: string;
24706
+ vendorType?: string;
24572
24707
  static names(): { [key: string]: string } {
24573
24708
  return {
24574
- hasMore: 'hasMore',
24575
- nextCursor: 'nextCursor',
24709
+ code: 'code',
24576
24710
  requestId: 'requestId',
24577
- useridList: 'useridList',
24711
+ vendorRequestId: 'vendorRequestId',
24712
+ vendorType: 'vendorType',
24578
24713
  };
24579
24714
  }
24580
24715
 
24581
24716
  static types(): { [key: string]: any } {
24582
24717
  return {
24583
- hasMore: 'boolean',
24584
- nextCursor: 'number',
24718
+ code: 'string',
24585
24719
  requestId: 'string',
24586
- useridList: { 'type': 'array', 'itemType': 'string' },
24720
+ vendorRequestId: 'string',
24721
+ vendorType: 'string',
24587
24722
  };
24588
24723
  }
24589
24724
 
@@ -24592,10 +24727,10 @@ export class StatisticsListByTypeReportResponseBody extends $tea.Model {
24592
24727
  }
24593
24728
  }
24594
24729
 
24595
- export class StatisticsListByTypeReportResponse extends $tea.Model {
24730
+ export class StartMinutesResponse extends $tea.Model {
24596
24731
  headers?: { [key: string]: string };
24597
24732
  statusCode?: number;
24598
- body?: StatisticsListByTypeReportResponseBody;
24733
+ body?: StartMinutesResponseBody;
24599
24734
  static names(): { [key: string]: string } {
24600
24735
  return {
24601
24736
  headers: 'headers',
@@ -24608,7 +24743,7 @@ export class StatisticsListByTypeReportResponse extends $tea.Model {
24608
24743
  return {
24609
24744
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
24610
24745
  statusCode: 'number',
24611
- body: StatisticsListByTypeReportResponseBody,
24746
+ body: StartMinutesResponseBody,
24612
24747
  };
24613
24748
  }
24614
24749
 
@@ -24617,9 +24752,9 @@ export class StatisticsListByTypeReportResponse extends $tea.Model {
24617
24752
  }
24618
24753
  }
24619
24754
 
24620
- export class StatisticsReportHeaders extends $tea.Model {
24755
+ export class StatisticsListByTypeReportHeaders extends $tea.Model {
24621
24756
  commonHeaders?: { [key: string]: string };
24622
- accountContext?: StatisticsReportHeadersAccountContext;
24757
+ accountContext?: StatisticsListByTypeReportHeadersAccountContext;
24623
24758
  static names(): { [key: string]: string } {
24624
24759
  return {
24625
24760
  commonHeaders: 'commonHeaders',
@@ -24630,7 +24765,7 @@ export class StatisticsReportHeaders extends $tea.Model {
24630
24765
  static types(): { [key: string]: any } {
24631
24766
  return {
24632
24767
  commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
24633
- accountContext: StatisticsReportHeadersAccountContext,
24768
+ accountContext: StatisticsListByTypeReportHeadersAccountContext,
24634
24769
  };
24635
24770
  }
24636
24771
 
@@ -24639,7 +24774,7 @@ export class StatisticsReportHeaders extends $tea.Model {
24639
24774
  }
24640
24775
  }
24641
24776
 
24642
- export class StatisticsReportShrinkHeaders extends $tea.Model {
24777
+ export class StatisticsListByTypeReportShrinkHeaders extends $tea.Model {
24643
24778
  commonHeaders?: { [key: string]: string };
24644
24779
  accountContextShrink?: string;
24645
24780
  static names(): { [key: string]: string } {
@@ -24661,20 +24796,29 @@ export class StatisticsReportShrinkHeaders extends $tea.Model {
24661
24796
  }
24662
24797
  }
24663
24798
 
24664
- export class StatisticsReportRequest extends $tea.Model {
24799
+ export class StatisticsListByTypeReportRequest extends $tea.Model {
24800
+ offset?: number;
24665
24801
  reportId?: string;
24666
- tenantContext?: StatisticsReportRequestTenantContext;
24802
+ size?: number;
24803
+ tenantContext?: StatisticsListByTypeReportRequestTenantContext;
24804
+ type?: number;
24667
24805
  static names(): { [key: string]: string } {
24668
24806
  return {
24807
+ offset: 'Offset',
24669
24808
  reportId: 'ReportId',
24809
+ size: 'Size',
24670
24810
  tenantContext: 'TenantContext',
24811
+ type: 'Type',
24671
24812
  };
24672
24813
  }
24673
24814
 
24674
24815
  static types(): { [key: string]: any } {
24675
24816
  return {
24817
+ offset: 'number',
24676
24818
  reportId: 'string',
24677
- tenantContext: StatisticsReportRequestTenantContext,
24819
+ size: 'number',
24820
+ tenantContext: StatisticsListByTypeReportRequestTenantContext,
24821
+ type: 'number',
24678
24822
  };
24679
24823
  }
24680
24824
 
@@ -24683,20 +24827,29 @@ export class StatisticsReportRequest extends $tea.Model {
24683
24827
  }
24684
24828
  }
24685
24829
 
24686
- export class StatisticsReportShrinkRequest extends $tea.Model {
24830
+ export class StatisticsListByTypeReportShrinkRequest extends $tea.Model {
24831
+ offset?: number;
24687
24832
  reportId?: string;
24833
+ size?: number;
24688
24834
  tenantContextShrink?: string;
24835
+ type?: number;
24689
24836
  static names(): { [key: string]: string } {
24690
24837
  return {
24838
+ offset: 'Offset',
24691
24839
  reportId: 'ReportId',
24840
+ size: 'Size',
24692
24841
  tenantContextShrink: 'TenantContext',
24842
+ type: 'Type',
24693
24843
  };
24694
24844
  }
24695
24845
 
24696
24846
  static types(): { [key: string]: any } {
24697
24847
  return {
24848
+ offset: 'number',
24698
24849
  reportId: 'string',
24850
+ size: 'number',
24699
24851
  tenantContextShrink: 'string',
24852
+ type: 'number',
24700
24853
  };
24701
24854
  }
24702
24855
 
@@ -24705,29 +24858,26 @@ export class StatisticsReportShrinkRequest extends $tea.Model {
24705
24858
  }
24706
24859
  }
24707
24860
 
24708
- export class StatisticsReportResponseBody extends $tea.Model {
24709
- commentNum?: number;
24710
- commentUserNum?: number;
24711
- likeNum?: number;
24712
- readNum?: number;
24861
+ export class StatisticsListByTypeReportResponseBody extends $tea.Model {
24862
+ hasMore?: boolean;
24863
+ nextCursor?: number;
24713
24864
  requestId?: string;
24865
+ useridList?: string[];
24714
24866
  static names(): { [key: string]: string } {
24715
24867
  return {
24716
- commentNum: 'commentNum',
24717
- commentUserNum: 'commentUserNum',
24718
- likeNum: 'likeNum',
24719
- readNum: 'readNum',
24868
+ hasMore: 'hasMore',
24869
+ nextCursor: 'nextCursor',
24720
24870
  requestId: 'requestId',
24871
+ useridList: 'useridList',
24721
24872
  };
24722
24873
  }
24723
24874
 
24724
24875
  static types(): { [key: string]: any } {
24725
24876
  return {
24726
- commentNum: 'number',
24727
- commentUserNum: 'number',
24728
- likeNum: 'number',
24729
- readNum: 'number',
24877
+ hasMore: 'boolean',
24878
+ nextCursor: 'number',
24730
24879
  requestId: 'string',
24880
+ useridList: { 'type': 'array', 'itemType': 'string' },
24731
24881
  };
24732
24882
  }
24733
24883
 
@@ -24736,10 +24886,10 @@ export class StatisticsReportResponseBody extends $tea.Model {
24736
24886
  }
24737
24887
  }
24738
24888
 
24739
- export class StatisticsReportResponse extends $tea.Model {
24889
+ export class StatisticsListByTypeReportResponse extends $tea.Model {
24740
24890
  headers?: { [key: string]: string };
24741
24891
  statusCode?: number;
24742
- body?: StatisticsReportResponseBody;
24892
+ body?: StatisticsListByTypeReportResponseBody;
24743
24893
  static names(): { [key: string]: string } {
24744
24894
  return {
24745
24895
  headers: 'headers',
@@ -24752,7 +24902,7 @@ export class StatisticsReportResponse extends $tea.Model {
24752
24902
  return {
24753
24903
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
24754
24904
  statusCode: 'number',
24755
- body: StatisticsReportResponseBody,
24905
+ body: StatisticsListByTypeReportResponseBody,
24756
24906
  };
24757
24907
  }
24758
24908
 
@@ -24761,9 +24911,9 @@ export class StatisticsReportResponse extends $tea.Model {
24761
24911
  }
24762
24912
  }
24763
24913
 
24764
- export class StopCloudRecordHeaders extends $tea.Model {
24914
+ export class StatisticsReportHeaders extends $tea.Model {
24765
24915
  commonHeaders?: { [key: string]: string };
24766
- accountContext?: StopCloudRecordHeadersAccountContext;
24916
+ accountContext?: StatisticsReportHeadersAccountContext;
24767
24917
  static names(): { [key: string]: string } {
24768
24918
  return {
24769
24919
  commonHeaders: 'commonHeaders',
@@ -24774,7 +24924,7 @@ export class StopCloudRecordHeaders extends $tea.Model {
24774
24924
  static types(): { [key: string]: any } {
24775
24925
  return {
24776
24926
  commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
24777
- accountContext: StopCloudRecordHeadersAccountContext,
24927
+ accountContext: StatisticsReportHeadersAccountContext,
24778
24928
  };
24779
24929
  }
24780
24930
 
@@ -24783,7 +24933,7 @@ export class StopCloudRecordHeaders extends $tea.Model {
24783
24933
  }
24784
24934
  }
24785
24935
 
24786
- export class StopCloudRecordShrinkHeaders extends $tea.Model {
24936
+ export class StatisticsReportShrinkHeaders extends $tea.Model {
24787
24937
  commonHeaders?: { [key: string]: string };
24788
24938
  accountContextShrink?: string;
24789
24939
  static names(): { [key: string]: string } {
@@ -24805,20 +24955,20 @@ export class StopCloudRecordShrinkHeaders extends $tea.Model {
24805
24955
  }
24806
24956
  }
24807
24957
 
24808
- export class StopCloudRecordRequest extends $tea.Model {
24809
- tenantContext?: StopCloudRecordRequestTenantContext;
24810
- conferenceId?: string;
24958
+ export class StatisticsReportRequest extends $tea.Model {
24959
+ reportId?: string;
24960
+ tenantContext?: StatisticsReportRequestTenantContext;
24811
24961
  static names(): { [key: string]: string } {
24812
24962
  return {
24963
+ reportId: 'ReportId',
24813
24964
  tenantContext: 'TenantContext',
24814
- conferenceId: 'conferenceId',
24815
24965
  };
24816
24966
  }
24817
24967
 
24818
24968
  static types(): { [key: string]: any } {
24819
24969
  return {
24820
- tenantContext: StopCloudRecordRequestTenantContext,
24821
- conferenceId: 'string',
24970
+ reportId: 'string',
24971
+ tenantContext: StatisticsReportRequestTenantContext,
24822
24972
  };
24823
24973
  }
24824
24974
 
@@ -24827,20 +24977,20 @@ export class StopCloudRecordRequest extends $tea.Model {
24827
24977
  }
24828
24978
  }
24829
24979
 
24830
- export class StopCloudRecordShrinkRequest extends $tea.Model {
24980
+ export class StatisticsReportShrinkRequest extends $tea.Model {
24981
+ reportId?: string;
24831
24982
  tenantContextShrink?: string;
24832
- conferenceId?: string;
24833
24983
  static names(): { [key: string]: string } {
24834
24984
  return {
24985
+ reportId: 'ReportId',
24835
24986
  tenantContextShrink: 'TenantContext',
24836
- conferenceId: 'conferenceId',
24837
24987
  };
24838
24988
  }
24839
24989
 
24840
24990
  static types(): { [key: string]: any } {
24841
24991
  return {
24992
+ reportId: 'string',
24842
24993
  tenantContextShrink: 'string',
24843
- conferenceId: 'string',
24844
24994
  };
24845
24995
  }
24846
24996
 
@@ -24849,19 +24999,28 @@ export class StopCloudRecordShrinkRequest extends $tea.Model {
24849
24999
  }
24850
25000
  }
24851
25001
 
24852
- export class StopCloudRecordResponseBody extends $tea.Model {
24853
- code?: string;
25002
+ export class StatisticsReportResponseBody extends $tea.Model {
25003
+ commentNum?: number;
25004
+ commentUserNum?: number;
25005
+ likeNum?: number;
25006
+ readNum?: number;
24854
25007
  requestId?: string;
24855
25008
  static names(): { [key: string]: string } {
24856
25009
  return {
24857
- code: 'code',
25010
+ commentNum: 'commentNum',
25011
+ commentUserNum: 'commentUserNum',
25012
+ likeNum: 'likeNum',
25013
+ readNum: 'readNum',
24858
25014
  requestId: 'requestId',
24859
25015
  };
24860
25016
  }
24861
25017
 
24862
25018
  static types(): { [key: string]: any } {
24863
25019
  return {
24864
- code: 'string',
25020
+ commentNum: 'number',
25021
+ commentUserNum: 'number',
25022
+ likeNum: 'number',
25023
+ readNum: 'number',
24865
25024
  requestId: 'string',
24866
25025
  };
24867
25026
  }
@@ -24871,10 +25030,10 @@ export class StopCloudRecordResponseBody extends $tea.Model {
24871
25030
  }
24872
25031
  }
24873
25032
 
24874
- export class StopCloudRecordResponse extends $tea.Model {
25033
+ export class StatisticsReportResponse extends $tea.Model {
24875
25034
  headers?: { [key: string]: string };
24876
25035
  statusCode?: number;
24877
- body?: StopCloudRecordResponseBody;
25036
+ body?: StatisticsReportResponseBody;
24878
25037
  static names(): { [key: string]: string } {
24879
25038
  return {
24880
25039
  headers: 'headers',
@@ -24887,7 +25046,7 @@ export class StopCloudRecordResponse extends $tea.Model {
24887
25046
  return {
24888
25047
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
24889
25048
  statusCode: 'number',
24890
- body: StopCloudRecordResponseBody,
25049
+ body: StatisticsReportResponseBody,
24891
25050
  };
24892
25051
  }
24893
25052
 
@@ -24896,9 +25055,9 @@ export class StopCloudRecordResponse extends $tea.Model {
24896
25055
  }
24897
25056
  }
24898
25057
 
24899
- export class SubscribeCalendarHeaders extends $tea.Model {
25058
+ export class StopCloudRecordHeaders extends $tea.Model {
24900
25059
  commonHeaders?: { [key: string]: string };
24901
- accountContext?: SubscribeCalendarHeadersAccountContext;
25060
+ accountContext?: StopCloudRecordHeadersAccountContext;
24902
25061
  static names(): { [key: string]: string } {
24903
25062
  return {
24904
25063
  commonHeaders: 'commonHeaders',
@@ -24909,7 +25068,7 @@ export class SubscribeCalendarHeaders extends $tea.Model {
24909
25068
  static types(): { [key: string]: any } {
24910
25069
  return {
24911
25070
  commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
24912
- accountContext: SubscribeCalendarHeadersAccountContext,
25071
+ accountContext: StopCloudRecordHeadersAccountContext,
24913
25072
  };
24914
25073
  }
24915
25074
 
@@ -24918,7 +25077,7 @@ export class SubscribeCalendarHeaders extends $tea.Model {
24918
25077
  }
24919
25078
  }
24920
25079
 
24921
- export class SubscribeCalendarShrinkHeaders extends $tea.Model {
25080
+ export class StopCloudRecordShrinkHeaders extends $tea.Model {
24922
25081
  commonHeaders?: { [key: string]: string };
24923
25082
  accountContextShrink?: string;
24924
25083
  static names(): { [key: string]: string } {
@@ -24940,17 +25099,20 @@ export class SubscribeCalendarShrinkHeaders extends $tea.Model {
24940
25099
  }
24941
25100
  }
24942
25101
 
24943
- export class SubscribeCalendarRequest extends $tea.Model {
24944
- calendarId?: string;
25102
+ export class StopCloudRecordRequest extends $tea.Model {
25103
+ tenantContext?: StopCloudRecordRequestTenantContext;
25104
+ conferenceId?: string;
24945
25105
  static names(): { [key: string]: string } {
24946
25106
  return {
24947
- calendarId: 'CalendarId',
25107
+ tenantContext: 'TenantContext',
25108
+ conferenceId: 'conferenceId',
24948
25109
  };
24949
25110
  }
24950
25111
 
24951
25112
  static types(): { [key: string]: any } {
24952
25113
  return {
24953
- calendarId: 'string',
25114
+ tenantContext: StopCloudRecordRequestTenantContext,
25115
+ conferenceId: 'string',
24954
25116
  };
24955
25117
  }
24956
25118
 
@@ -24959,16 +25121,41 @@ export class SubscribeCalendarRequest extends $tea.Model {
24959
25121
  }
24960
25122
  }
24961
25123
 
24962
- export class SubscribeCalendarResponseBody extends $tea.Model {
25124
+ export class StopCloudRecordShrinkRequest extends $tea.Model {
25125
+ tenantContextShrink?: string;
25126
+ conferenceId?: string;
25127
+ static names(): { [key: string]: string } {
25128
+ return {
25129
+ tenantContextShrink: 'TenantContext',
25130
+ conferenceId: 'conferenceId',
25131
+ };
25132
+ }
25133
+
25134
+ static types(): { [key: string]: any } {
25135
+ return {
25136
+ tenantContextShrink: 'string',
25137
+ conferenceId: 'string',
25138
+ };
25139
+ }
25140
+
25141
+ constructor(map?: { [key: string]: any }) {
25142
+ super(map);
25143
+ }
25144
+ }
25145
+
25146
+ export class StopCloudRecordResponseBody extends $tea.Model {
25147
+ code?: string;
24963
25148
  requestId?: string;
24964
25149
  static names(): { [key: string]: string } {
24965
25150
  return {
25151
+ code: 'code',
24966
25152
  requestId: 'requestId',
24967
25153
  };
24968
25154
  }
24969
25155
 
24970
25156
  static types(): { [key: string]: any } {
24971
25157
  return {
25158
+ code: 'string',
24972
25159
  requestId: 'string',
24973
25160
  };
24974
25161
  }
@@ -24978,10 +25165,10 @@ export class SubscribeCalendarResponseBody extends $tea.Model {
24978
25165
  }
24979
25166
  }
24980
25167
 
24981
- export class SubscribeCalendarResponse extends $tea.Model {
25168
+ export class StopCloudRecordResponse extends $tea.Model {
24982
25169
  headers?: { [key: string]: string };
24983
25170
  statusCode?: number;
24984
- body?: SubscribeCalendarResponseBody;
25171
+ body?: StopCloudRecordResponseBody;
24985
25172
  static names(): { [key: string]: string } {
24986
25173
  return {
24987
25174
  headers: 'headers',
@@ -24994,7 +25181,7 @@ export class SubscribeCalendarResponse extends $tea.Model {
24994
25181
  return {
24995
25182
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
24996
25183
  statusCode: 'number',
24997
- body: SubscribeCalendarResponseBody,
25184
+ body: StopCloudRecordResponseBody,
24998
25185
  };
24999
25186
  }
25000
25187
 
@@ -25003,9 +25190,9 @@ export class SubscribeCalendarResponse extends $tea.Model {
25003
25190
  }
25004
25191
  }
25005
25192
 
25006
- export class SyncDingTypeHeaders extends $tea.Model {
25193
+ export class StopMinutesHeaders extends $tea.Model {
25007
25194
  commonHeaders?: { [key: string]: string };
25008
- accountContext?: SyncDingTypeHeadersAccountContext;
25195
+ accountContext?: StopMinutesHeadersAccountContext;
25009
25196
  static names(): { [key: string]: string } {
25010
25197
  return {
25011
25198
  commonHeaders: 'commonHeaders',
@@ -25016,7 +25203,7 @@ export class SyncDingTypeHeaders extends $tea.Model {
25016
25203
  static types(): { [key: string]: any } {
25017
25204
  return {
25018
25205
  commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
25019
- accountContext: SyncDingTypeHeadersAccountContext,
25206
+ accountContext: StopMinutesHeadersAccountContext,
25020
25207
  };
25021
25208
  }
25022
25209
 
@@ -25025,7 +25212,7 @@ export class SyncDingTypeHeaders extends $tea.Model {
25025
25212
  }
25026
25213
  }
25027
25214
 
25028
- export class SyncDingTypeShrinkHeaders extends $tea.Model {
25215
+ export class StopMinutesShrinkHeaders extends $tea.Model {
25029
25216
  commonHeaders?: { [key: string]: string };
25030
25217
  accountContextShrink?: string;
25031
25218
  static names(): { [key: string]: string } {
@@ -25047,29 +25234,20 @@ export class SyncDingTypeShrinkHeaders extends $tea.Model {
25047
25234
  }
25048
25235
  }
25049
25236
 
25050
- export class SyncDingTypeRequest extends $tea.Model {
25051
- dingType?: string;
25052
- isDimission?: string;
25053
- source?: string;
25054
- tenantContext?: SyncDingTypeRequestTenantContext;
25055
- workNo?: string;
25237
+ export class StopMinutesRequest extends $tea.Model {
25238
+ tenantContext?: StopMinutesRequestTenantContext;
25239
+ conferenceId?: string;
25056
25240
  static names(): { [key: string]: string } {
25057
25241
  return {
25058
- dingType: 'DingType',
25059
- isDimission: 'IsDimission',
25060
- source: 'Source',
25061
25242
  tenantContext: 'TenantContext',
25062
- workNo: 'WorkNo',
25243
+ conferenceId: 'conferenceId',
25063
25244
  };
25064
25245
  }
25065
25246
 
25066
25247
  static types(): { [key: string]: any } {
25067
25248
  return {
25068
- dingType: 'string',
25069
- isDimission: 'string',
25070
- source: 'string',
25071
- tenantContext: SyncDingTypeRequestTenantContext,
25072
- workNo: 'string',
25249
+ tenantContext: StopMinutesRequestTenantContext,
25250
+ conferenceId: 'string',
25073
25251
  };
25074
25252
  }
25075
25253
 
@@ -25078,29 +25256,20 @@ export class SyncDingTypeRequest extends $tea.Model {
25078
25256
  }
25079
25257
  }
25080
25258
 
25081
- export class SyncDingTypeShrinkRequest extends $tea.Model {
25082
- dingType?: string;
25083
- isDimission?: string;
25084
- source?: string;
25259
+ export class StopMinutesShrinkRequest extends $tea.Model {
25085
25260
  tenantContextShrink?: string;
25086
- workNo?: string;
25261
+ conferenceId?: string;
25087
25262
  static names(): { [key: string]: string } {
25088
25263
  return {
25089
- dingType: 'DingType',
25090
- isDimission: 'IsDimission',
25091
- source: 'Source',
25092
25264
  tenantContextShrink: 'TenantContext',
25093
- workNo: 'WorkNo',
25265
+ conferenceId: 'conferenceId',
25094
25266
  };
25095
25267
  }
25096
25268
 
25097
25269
  static types(): { [key: string]: any } {
25098
25270
  return {
25099
- dingType: 'string',
25100
- isDimission: 'string',
25101
- source: 'string',
25102
25271
  tenantContextShrink: 'string',
25103
- workNo: 'string',
25272
+ conferenceId: 'string',
25104
25273
  };
25105
25274
  }
25106
25275
 
@@ -25109,15 +25278,15 @@ export class SyncDingTypeShrinkRequest extends $tea.Model {
25109
25278
  }
25110
25279
  }
25111
25280
 
25112
- export class SyncDingTypeResponseBody extends $tea.Model {
25281
+ export class StopMinutesResponseBody extends $tea.Model {
25282
+ code?: string;
25113
25283
  requestId?: string;
25114
- success?: boolean;
25115
25284
  vendorRequestId?: string;
25116
25285
  vendorType?: string;
25117
25286
  static names(): { [key: string]: string } {
25118
25287
  return {
25288
+ code: 'code',
25119
25289
  requestId: 'requestId',
25120
- success: 'success',
25121
25290
  vendorRequestId: 'vendorRequestId',
25122
25291
  vendorType: 'vendorType',
25123
25292
  };
@@ -25125,8 +25294,8 @@ export class SyncDingTypeResponseBody extends $tea.Model {
25125
25294
 
25126
25295
  static types(): { [key: string]: any } {
25127
25296
  return {
25297
+ code: 'string',
25128
25298
  requestId: 'string',
25129
- success: 'boolean',
25130
25299
  vendorRequestId: 'string',
25131
25300
  vendorType: 'string',
25132
25301
  };
@@ -25137,10 +25306,10 @@ export class SyncDingTypeResponseBody extends $tea.Model {
25137
25306
  }
25138
25307
  }
25139
25308
 
25140
- export class SyncDingTypeResponse extends $tea.Model {
25309
+ export class StopMinutesResponse extends $tea.Model {
25141
25310
  headers?: { [key: string]: string };
25142
25311
  statusCode?: number;
25143
- body?: SyncDingTypeResponseBody;
25312
+ body?: StopMinutesResponseBody;
25144
25313
  static names(): { [key: string]: string } {
25145
25314
  return {
25146
25315
  headers: 'headers',
@@ -25153,7 +25322,7 @@ export class SyncDingTypeResponse extends $tea.Model {
25153
25322
  return {
25154
25323
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
25155
25324
  statusCode: 'number',
25156
- body: SyncDingTypeResponseBody,
25325
+ body: StopMinutesResponseBody,
25157
25326
  };
25158
25327
  }
25159
25328
 
@@ -25162,9 +25331,9 @@ export class SyncDingTypeResponse extends $tea.Model {
25162
25331
  }
25163
25332
  }
25164
25333
 
25165
- export class TerminateInstanceHeaders extends $tea.Model {
25334
+ export class SubscribeCalendarHeaders extends $tea.Model {
25166
25335
  commonHeaders?: { [key: string]: string };
25167
- accountContext?: TerminateInstanceHeadersAccountContext;
25336
+ accountContext?: SubscribeCalendarHeadersAccountContext;
25168
25337
  static names(): { [key: string]: string } {
25169
25338
  return {
25170
25339
  commonHeaders: 'commonHeaders',
@@ -25175,7 +25344,7 @@ export class TerminateInstanceHeaders extends $tea.Model {
25175
25344
  static types(): { [key: string]: any } {
25176
25345
  return {
25177
25346
  commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
25178
- accountContext: TerminateInstanceHeadersAccountContext,
25347
+ accountContext: SubscribeCalendarHeadersAccountContext,
25179
25348
  };
25180
25349
  }
25181
25350
 
@@ -25184,7 +25353,7 @@ export class TerminateInstanceHeaders extends $tea.Model {
25184
25353
  }
25185
25354
  }
25186
25355
 
25187
- export class TerminateInstanceShrinkHeaders extends $tea.Model {
25356
+ export class SubscribeCalendarShrinkHeaders extends $tea.Model {
25188
25357
  commonHeaders?: { [key: string]: string };
25189
25358
  accountContextShrink?: string;
25190
25359
  static names(): { [key: string]: string } {
@@ -25206,26 +25375,17 @@ export class TerminateInstanceShrinkHeaders extends $tea.Model {
25206
25375
  }
25207
25376
  }
25208
25377
 
25209
- export class TerminateInstanceRequest extends $tea.Model {
25210
- appType?: string;
25211
- language?: string;
25212
- processInstanceId?: string;
25213
- systemToken?: string;
25378
+ export class SubscribeCalendarRequest extends $tea.Model {
25379
+ calendarId?: string;
25214
25380
  static names(): { [key: string]: string } {
25215
25381
  return {
25216
- appType: 'AppType',
25217
- language: 'Language',
25218
- processInstanceId: 'ProcessInstanceId',
25219
- systemToken: 'SystemToken',
25382
+ calendarId: 'CalendarId',
25220
25383
  };
25221
25384
  }
25222
25385
 
25223
25386
  static types(): { [key: string]: any } {
25224
25387
  return {
25225
- appType: 'string',
25226
- language: 'string',
25227
- processInstanceId: 'string',
25228
- systemToken: 'string',
25388
+ calendarId: 'string',
25229
25389
  };
25230
25390
  }
25231
25391
 
@@ -25234,23 +25394,17 @@ export class TerminateInstanceRequest extends $tea.Model {
25234
25394
  }
25235
25395
  }
25236
25396
 
25237
- export class TerminateInstanceResponseBody extends $tea.Model {
25397
+ export class SubscribeCalendarResponseBody extends $tea.Model {
25238
25398
  requestId?: string;
25239
- vendorRequestId?: string;
25240
- vendorType?: string;
25241
25399
  static names(): { [key: string]: string } {
25242
25400
  return {
25243
25401
  requestId: 'requestId',
25244
- vendorRequestId: 'vendorRequestId',
25245
- vendorType: 'vendorType',
25246
25402
  };
25247
25403
  }
25248
25404
 
25249
25405
  static types(): { [key: string]: any } {
25250
25406
  return {
25251
25407
  requestId: 'string',
25252
- vendorRequestId: 'string',
25253
- vendorType: 'string',
25254
25408
  };
25255
25409
  }
25256
25410
 
@@ -25259,10 +25413,10 @@ export class TerminateInstanceResponseBody extends $tea.Model {
25259
25413
  }
25260
25414
  }
25261
25415
 
25262
- export class TerminateInstanceResponse extends $tea.Model {
25416
+ export class SubscribeCalendarResponse extends $tea.Model {
25263
25417
  headers?: { [key: string]: string };
25264
25418
  statusCode?: number;
25265
- body?: TerminateInstanceResponseBody;
25419
+ body?: SubscribeCalendarResponseBody;
25266
25420
  static names(): { [key: string]: string } {
25267
25421
  return {
25268
25422
  headers: 'headers',
@@ -25275,7 +25429,7 @@ export class TerminateInstanceResponse extends $tea.Model {
25275
25429
  return {
25276
25430
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
25277
25431
  statusCode: 'number',
25278
- body: TerminateInstanceResponseBody,
25432
+ body: SubscribeCalendarResponseBody,
25279
25433
  };
25280
25434
  }
25281
25435
 
@@ -25284,9 +25438,9 @@ export class TerminateInstanceResponse extends $tea.Model {
25284
25438
  }
25285
25439
  }
25286
25440
 
25287
- export class UnsubscribeCalendarHeaders extends $tea.Model {
25441
+ export class SyncDingTypeHeaders extends $tea.Model {
25288
25442
  commonHeaders?: { [key: string]: string };
25289
- accountContext?: UnsubscribeCalendarHeadersAccountContext;
25443
+ accountContext?: SyncDingTypeHeadersAccountContext;
25290
25444
  static names(): { [key: string]: string } {
25291
25445
  return {
25292
25446
  commonHeaders: 'commonHeaders',
@@ -25297,7 +25451,7 @@ export class UnsubscribeCalendarHeaders extends $tea.Model {
25297
25451
  static types(): { [key: string]: any } {
25298
25452
  return {
25299
25453
  commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
25300
- accountContext: UnsubscribeCalendarHeadersAccountContext,
25454
+ accountContext: SyncDingTypeHeadersAccountContext,
25301
25455
  };
25302
25456
  }
25303
25457
 
@@ -25306,7 +25460,7 @@ export class UnsubscribeCalendarHeaders extends $tea.Model {
25306
25460
  }
25307
25461
  }
25308
25462
 
25309
- export class UnsubscribeCalendarShrinkHeaders extends $tea.Model {
25463
+ export class SyncDingTypeShrinkHeaders extends $tea.Model {
25310
25464
  commonHeaders?: { [key: string]: string };
25311
25465
  accountContextShrink?: string;
25312
25466
  static names(): { [key: string]: string } {
@@ -25328,17 +25482,29 @@ export class UnsubscribeCalendarShrinkHeaders extends $tea.Model {
25328
25482
  }
25329
25483
  }
25330
25484
 
25331
- export class UnsubscribeCalendarRequest extends $tea.Model {
25332
- calendarId?: string;
25485
+ export class SyncDingTypeRequest extends $tea.Model {
25486
+ dingType?: string;
25487
+ isDimission?: string;
25488
+ source?: string;
25489
+ tenantContext?: SyncDingTypeRequestTenantContext;
25490
+ workNo?: string;
25333
25491
  static names(): { [key: string]: string } {
25334
25492
  return {
25335
- calendarId: 'CalendarId',
25493
+ dingType: 'DingType',
25494
+ isDimission: 'IsDimission',
25495
+ source: 'Source',
25496
+ tenantContext: 'TenantContext',
25497
+ workNo: 'WorkNo',
25336
25498
  };
25337
25499
  }
25338
25500
 
25339
25501
  static types(): { [key: string]: any } {
25340
25502
  return {
25341
- calendarId: 'string',
25503
+ dingType: 'string',
25504
+ isDimission: 'string',
25505
+ source: 'string',
25506
+ tenantContext: SyncDingTypeRequestTenantContext,
25507
+ workNo: 'string',
25342
25508
  };
25343
25509
  }
25344
25510
 
@@ -25347,20 +25513,57 @@ export class UnsubscribeCalendarRequest extends $tea.Model {
25347
25513
  }
25348
25514
  }
25349
25515
 
25350
- export class UnsubscribeCalendarResponseBody extends $tea.Model {
25516
+ export class SyncDingTypeShrinkRequest extends $tea.Model {
25517
+ dingType?: string;
25518
+ isDimission?: string;
25519
+ source?: string;
25520
+ tenantContextShrink?: string;
25521
+ workNo?: string;
25522
+ static names(): { [key: string]: string } {
25523
+ return {
25524
+ dingType: 'DingType',
25525
+ isDimission: 'IsDimission',
25526
+ source: 'Source',
25527
+ tenantContextShrink: 'TenantContext',
25528
+ workNo: 'WorkNo',
25529
+ };
25530
+ }
25531
+
25532
+ static types(): { [key: string]: any } {
25533
+ return {
25534
+ dingType: 'string',
25535
+ isDimission: 'string',
25536
+ source: 'string',
25537
+ tenantContextShrink: 'string',
25538
+ workNo: 'string',
25539
+ };
25540
+ }
25541
+
25542
+ constructor(map?: { [key: string]: any }) {
25543
+ super(map);
25544
+ }
25545
+ }
25546
+
25547
+ export class SyncDingTypeResponseBody extends $tea.Model {
25351
25548
  requestId?: string;
25352
- result?: boolean;
25549
+ success?: boolean;
25550
+ vendorRequestId?: string;
25551
+ vendorType?: string;
25353
25552
  static names(): { [key: string]: string } {
25354
25553
  return {
25355
25554
  requestId: 'requestId',
25356
- result: 'result',
25555
+ success: 'success',
25556
+ vendorRequestId: 'vendorRequestId',
25557
+ vendorType: 'vendorType',
25357
25558
  };
25358
25559
  }
25359
25560
 
25360
25561
  static types(): { [key: string]: any } {
25361
25562
  return {
25362
25563
  requestId: 'string',
25363
- result: 'boolean',
25564
+ success: 'boolean',
25565
+ vendorRequestId: 'string',
25566
+ vendorType: 'string',
25364
25567
  };
25365
25568
  }
25366
25569
 
@@ -25369,10 +25572,10 @@ export class UnsubscribeCalendarResponseBody extends $tea.Model {
25369
25572
  }
25370
25573
  }
25371
25574
 
25372
- export class UnsubscribeCalendarResponse extends $tea.Model {
25575
+ export class SyncDingTypeResponse extends $tea.Model {
25373
25576
  headers?: { [key: string]: string };
25374
25577
  statusCode?: number;
25375
- body?: UnsubscribeCalendarResponseBody;
25578
+ body?: SyncDingTypeResponseBody;
25376
25579
  static names(): { [key: string]: string } {
25377
25580
  return {
25378
25581
  headers: 'headers',
@@ -25385,7 +25588,7 @@ export class UnsubscribeCalendarResponse extends $tea.Model {
25385
25588
  return {
25386
25589
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
25387
25590
  statusCode: 'number',
25388
- body: UnsubscribeCalendarResponseBody,
25591
+ body: SyncDingTypeResponseBody,
25389
25592
  };
25390
25593
  }
25391
25594
 
@@ -25394,9 +25597,9 @@ export class UnsubscribeCalendarResponse extends $tea.Model {
25394
25597
  }
25395
25598
  }
25396
25599
 
25397
- export class UpdateFormDataHeaders extends $tea.Model {
25600
+ export class TerminateInstanceHeaders extends $tea.Model {
25398
25601
  commonHeaders?: { [key: string]: string };
25399
- accountContext?: UpdateFormDataHeadersAccountContext;
25602
+ accountContext?: TerminateInstanceHeadersAccountContext;
25400
25603
  static names(): { [key: string]: string } {
25401
25604
  return {
25402
25605
  commonHeaders: 'commonHeaders',
@@ -25407,7 +25610,7 @@ export class UpdateFormDataHeaders extends $tea.Model {
25407
25610
  static types(): { [key: string]: any } {
25408
25611
  return {
25409
25612
  commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
25410
- accountContext: UpdateFormDataHeadersAccountContext,
25613
+ accountContext: TerminateInstanceHeadersAccountContext,
25411
25614
  };
25412
25615
  }
25413
25616
 
@@ -25416,7 +25619,239 @@ export class UpdateFormDataHeaders extends $tea.Model {
25416
25619
  }
25417
25620
  }
25418
25621
 
25419
- export class UpdateFormDataShrinkHeaders extends $tea.Model {
25622
+ export class TerminateInstanceShrinkHeaders extends $tea.Model {
25623
+ commonHeaders?: { [key: string]: string };
25624
+ accountContextShrink?: string;
25625
+ static names(): { [key: string]: string } {
25626
+ return {
25627
+ commonHeaders: 'commonHeaders',
25628
+ accountContextShrink: 'AccountContext',
25629
+ };
25630
+ }
25631
+
25632
+ static types(): { [key: string]: any } {
25633
+ return {
25634
+ commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
25635
+ accountContextShrink: 'string',
25636
+ };
25637
+ }
25638
+
25639
+ constructor(map?: { [key: string]: any }) {
25640
+ super(map);
25641
+ }
25642
+ }
25643
+
25644
+ export class TerminateInstanceRequest extends $tea.Model {
25645
+ appType?: string;
25646
+ language?: string;
25647
+ processInstanceId?: string;
25648
+ systemToken?: string;
25649
+ static names(): { [key: string]: string } {
25650
+ return {
25651
+ appType: 'AppType',
25652
+ language: 'Language',
25653
+ processInstanceId: 'ProcessInstanceId',
25654
+ systemToken: 'SystemToken',
25655
+ };
25656
+ }
25657
+
25658
+ static types(): { [key: string]: any } {
25659
+ return {
25660
+ appType: 'string',
25661
+ language: 'string',
25662
+ processInstanceId: 'string',
25663
+ systemToken: 'string',
25664
+ };
25665
+ }
25666
+
25667
+ constructor(map?: { [key: string]: any }) {
25668
+ super(map);
25669
+ }
25670
+ }
25671
+
25672
+ export class TerminateInstanceResponseBody extends $tea.Model {
25673
+ requestId?: string;
25674
+ vendorRequestId?: string;
25675
+ vendorType?: string;
25676
+ static names(): { [key: string]: string } {
25677
+ return {
25678
+ requestId: 'requestId',
25679
+ vendorRequestId: 'vendorRequestId',
25680
+ vendorType: 'vendorType',
25681
+ };
25682
+ }
25683
+
25684
+ static types(): { [key: string]: any } {
25685
+ return {
25686
+ requestId: 'string',
25687
+ vendorRequestId: 'string',
25688
+ vendorType: 'string',
25689
+ };
25690
+ }
25691
+
25692
+ constructor(map?: { [key: string]: any }) {
25693
+ super(map);
25694
+ }
25695
+ }
25696
+
25697
+ export class TerminateInstanceResponse extends $tea.Model {
25698
+ headers?: { [key: string]: string };
25699
+ statusCode?: number;
25700
+ body?: TerminateInstanceResponseBody;
25701
+ static names(): { [key: string]: string } {
25702
+ return {
25703
+ headers: 'headers',
25704
+ statusCode: 'statusCode',
25705
+ body: 'body',
25706
+ };
25707
+ }
25708
+
25709
+ static types(): { [key: string]: any } {
25710
+ return {
25711
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
25712
+ statusCode: 'number',
25713
+ body: TerminateInstanceResponseBody,
25714
+ };
25715
+ }
25716
+
25717
+ constructor(map?: { [key: string]: any }) {
25718
+ super(map);
25719
+ }
25720
+ }
25721
+
25722
+ export class UnsubscribeCalendarHeaders extends $tea.Model {
25723
+ commonHeaders?: { [key: string]: string };
25724
+ accountContext?: UnsubscribeCalendarHeadersAccountContext;
25725
+ static names(): { [key: string]: string } {
25726
+ return {
25727
+ commonHeaders: 'commonHeaders',
25728
+ accountContext: 'AccountContext',
25729
+ };
25730
+ }
25731
+
25732
+ static types(): { [key: string]: any } {
25733
+ return {
25734
+ commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
25735
+ accountContext: UnsubscribeCalendarHeadersAccountContext,
25736
+ };
25737
+ }
25738
+
25739
+ constructor(map?: { [key: string]: any }) {
25740
+ super(map);
25741
+ }
25742
+ }
25743
+
25744
+ export class UnsubscribeCalendarShrinkHeaders extends $tea.Model {
25745
+ commonHeaders?: { [key: string]: string };
25746
+ accountContextShrink?: string;
25747
+ static names(): { [key: string]: string } {
25748
+ return {
25749
+ commonHeaders: 'commonHeaders',
25750
+ accountContextShrink: 'AccountContext',
25751
+ };
25752
+ }
25753
+
25754
+ static types(): { [key: string]: any } {
25755
+ return {
25756
+ commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
25757
+ accountContextShrink: 'string',
25758
+ };
25759
+ }
25760
+
25761
+ constructor(map?: { [key: string]: any }) {
25762
+ super(map);
25763
+ }
25764
+ }
25765
+
25766
+ export class UnsubscribeCalendarRequest extends $tea.Model {
25767
+ calendarId?: string;
25768
+ static names(): { [key: string]: string } {
25769
+ return {
25770
+ calendarId: 'CalendarId',
25771
+ };
25772
+ }
25773
+
25774
+ static types(): { [key: string]: any } {
25775
+ return {
25776
+ calendarId: 'string',
25777
+ };
25778
+ }
25779
+
25780
+ constructor(map?: { [key: string]: any }) {
25781
+ super(map);
25782
+ }
25783
+ }
25784
+
25785
+ export class UnsubscribeCalendarResponseBody extends $tea.Model {
25786
+ requestId?: string;
25787
+ result?: boolean;
25788
+ static names(): { [key: string]: string } {
25789
+ return {
25790
+ requestId: 'requestId',
25791
+ result: 'result',
25792
+ };
25793
+ }
25794
+
25795
+ static types(): { [key: string]: any } {
25796
+ return {
25797
+ requestId: 'string',
25798
+ result: 'boolean',
25799
+ };
25800
+ }
25801
+
25802
+ constructor(map?: { [key: string]: any }) {
25803
+ super(map);
25804
+ }
25805
+ }
25806
+
25807
+ export class UnsubscribeCalendarResponse extends $tea.Model {
25808
+ headers?: { [key: string]: string };
25809
+ statusCode?: number;
25810
+ body?: UnsubscribeCalendarResponseBody;
25811
+ static names(): { [key: string]: string } {
25812
+ return {
25813
+ headers: 'headers',
25814
+ statusCode: 'statusCode',
25815
+ body: 'body',
25816
+ };
25817
+ }
25818
+
25819
+ static types(): { [key: string]: any } {
25820
+ return {
25821
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
25822
+ statusCode: 'number',
25823
+ body: UnsubscribeCalendarResponseBody,
25824
+ };
25825
+ }
25826
+
25827
+ constructor(map?: { [key: string]: any }) {
25828
+ super(map);
25829
+ }
25830
+ }
25831
+
25832
+ export class UpdateFormDataHeaders extends $tea.Model {
25833
+ commonHeaders?: { [key: string]: string };
25834
+ accountContext?: UpdateFormDataHeadersAccountContext;
25835
+ static names(): { [key: string]: string } {
25836
+ return {
25837
+ commonHeaders: 'commonHeaders',
25838
+ accountContext: 'AccountContext',
25839
+ };
25840
+ }
25841
+
25842
+ static types(): { [key: string]: any } {
25843
+ return {
25844
+ commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
25845
+ accountContext: UpdateFormDataHeadersAccountContext,
25846
+ };
25847
+ }
25848
+
25849
+ constructor(map?: { [key: string]: any }) {
25850
+ super(map);
25851
+ }
25852
+ }
25853
+
25854
+ export class UpdateFormDataShrinkHeaders extends $tea.Model {
25420
25855
  commonHeaders?: { [key: string]: string };
25421
25856
  accountContextShrink?: string;
25422
25857
  static names(): { [key: string]: string } {
@@ -39695,6 +40130,81 @@ export class QueryMeetingRoomListResponseBodyResult extends $tea.Model {
39695
40130
  }
39696
40131
  }
39697
40132
 
40133
+ export class QueryMinutesHeadersAccountContext extends $tea.Model {
40134
+ accountId?: string;
40135
+ static names(): { [key: string]: string } {
40136
+ return {
40137
+ accountId: 'accountId',
40138
+ };
40139
+ }
40140
+
40141
+ static types(): { [key: string]: any } {
40142
+ return {
40143
+ accountId: 'string',
40144
+ };
40145
+ }
40146
+
40147
+ constructor(map?: { [key: string]: any }) {
40148
+ super(map);
40149
+ }
40150
+ }
40151
+
40152
+ export class QueryMinutesRequestTenantContext extends $tea.Model {
40153
+ tenantId?: string;
40154
+ static names(): { [key: string]: string } {
40155
+ return {
40156
+ tenantId: 'tenantId',
40157
+ };
40158
+ }
40159
+
40160
+ static types(): { [key: string]: any } {
40161
+ return {
40162
+ tenantId: 'string',
40163
+ };
40164
+ }
40165
+
40166
+ constructor(map?: { [key: string]: any }) {
40167
+ super(map);
40168
+ }
40169
+ }
40170
+
40171
+ export class QueryMinutesResponseBodyAudioList extends $tea.Model {
40172
+ duration?: number;
40173
+ endTime?: number;
40174
+ fileSize?: number;
40175
+ playUrl?: string;
40176
+ recordId?: string;
40177
+ startTime?: number;
40178
+ userId?: string;
40179
+ static names(): { [key: string]: string } {
40180
+ return {
40181
+ duration: 'Duration',
40182
+ endTime: 'EndTime',
40183
+ fileSize: 'FileSize',
40184
+ playUrl: 'PlayUrl',
40185
+ recordId: 'RecordId',
40186
+ startTime: 'StartTime',
40187
+ userId: 'UserId',
40188
+ };
40189
+ }
40190
+
40191
+ static types(): { [key: string]: any } {
40192
+ return {
40193
+ duration: 'number',
40194
+ endTime: 'number',
40195
+ fileSize: 'number',
40196
+ playUrl: 'string',
40197
+ recordId: 'string',
40198
+ startTime: 'number',
40199
+ userId: 'string',
40200
+ };
40201
+ }
40202
+
40203
+ constructor(map?: { [key: string]: any }) {
40204
+ super(map);
40205
+ }
40206
+ }
40207
+
39698
40208
  export class QueryMinutesSummaryHeadersAccountContext extends $tea.Model {
39699
40209
  accountId?: string;
39700
40210
  static names(): { [key: string]: string } {
@@ -41718,6 +42228,44 @@ export class StartInstanceHeadersAccountContext extends $tea.Model {
41718
42228
  }
41719
42229
  }
41720
42230
 
42231
+ export class StartMinutesHeadersAccountContext extends $tea.Model {
42232
+ accountId?: string;
42233
+ static names(): { [key: string]: string } {
42234
+ return {
42235
+ accountId: 'accountId',
42236
+ };
42237
+ }
42238
+
42239
+ static types(): { [key: string]: any } {
42240
+ return {
42241
+ accountId: 'string',
42242
+ };
42243
+ }
42244
+
42245
+ constructor(map?: { [key: string]: any }) {
42246
+ super(map);
42247
+ }
42248
+ }
42249
+
42250
+ export class StartMinutesRequestTenantContext extends $tea.Model {
42251
+ tenantId?: string;
42252
+ static names(): { [key: string]: string } {
42253
+ return {
42254
+ tenantId: 'tenantId',
42255
+ };
42256
+ }
42257
+
42258
+ static types(): { [key: string]: any } {
42259
+ return {
42260
+ tenantId: 'string',
42261
+ };
42262
+ }
42263
+
42264
+ constructor(map?: { [key: string]: any }) {
42265
+ super(map);
42266
+ }
42267
+ }
42268
+
41721
42269
  export class StatisticsListByTypeReportHeadersAccountContext extends $tea.Model {
41722
42270
  accountId?: string;
41723
42271
  static names(): { [key: string]: string } {
@@ -41832,6 +42380,44 @@ export class StopCloudRecordRequestTenantContext extends $tea.Model {
41832
42380
  }
41833
42381
  }
41834
42382
 
42383
+ export class StopMinutesHeadersAccountContext extends $tea.Model {
42384
+ accountId?: string;
42385
+ static names(): { [key: string]: string } {
42386
+ return {
42387
+ accountId: 'accountId',
42388
+ };
42389
+ }
42390
+
42391
+ static types(): { [key: string]: any } {
42392
+ return {
42393
+ accountId: 'string',
42394
+ };
42395
+ }
42396
+
42397
+ constructor(map?: { [key: string]: any }) {
42398
+ super(map);
42399
+ }
42400
+ }
42401
+
42402
+ export class StopMinutesRequestTenantContext extends $tea.Model {
42403
+ tenantId?: string;
42404
+ static names(): { [key: string]: string } {
42405
+ return {
42406
+ tenantId: 'tenantId',
42407
+ };
42408
+ }
42409
+
42410
+ static types(): { [key: string]: any } {
42411
+ return {
42412
+ tenantId: 'string',
42413
+ };
42414
+ }
42415
+
42416
+ constructor(map?: { [key: string]: any }) {
42417
+ super(map);
42418
+ }
42419
+ }
42420
+
41835
42421
  export class SubscribeCalendarHeadersAccountContext extends $tea.Model {
41836
42422
  accountId?: string;
41837
42423
  static names(): { [key: string]: string } {
@@ -53526,6 +54112,76 @@ export default class Client extends OpenApi {
53526
54112
  return await this.queryMeetingRoomListWithOptions(request, headers, runtime);
53527
54113
  }
53528
54114
 
54115
+ /**
54116
+ * @summary 查询闪记录音
54117
+ *
54118
+ * @param tmpReq QueryMinutesRequest
54119
+ * @param tmpHeader QueryMinutesHeaders
54120
+ * @param runtime runtime options for this request RuntimeOptions
54121
+ * @return QueryMinutesResponse
54122
+ */
54123
+ async queryMinutesWithOptions(tmpReq: QueryMinutesRequest, tmpHeader: QueryMinutesHeaders, runtime: $Util.RuntimeOptions): Promise<QueryMinutesResponse> {
54124
+ Util.validateModel(tmpReq);
54125
+ let request = new QueryMinutesShrinkRequest({ });
54126
+ OpenApiUtil.convert(tmpReq, request);
54127
+ let headers = new QueryMinutesShrinkHeaders({ });
54128
+ OpenApiUtil.convert(tmpHeader, headers);
54129
+ if (!Util.isUnset(tmpHeader.accountContext)) {
54130
+ headers.accountContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpHeader.accountContext, "AccountContext", "json");
54131
+ }
54132
+
54133
+ if (!Util.isUnset(tmpReq.tenantContext)) {
54134
+ request.tenantContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.tenantContext, "TenantContext", "json");
54135
+ }
54136
+
54137
+ let body : {[key: string ]: any} = { };
54138
+ if (!Util.isUnset(request.tenantContextShrink)) {
54139
+ body["TenantContext"] = request.tenantContextShrink;
54140
+ }
54141
+
54142
+ if (!Util.isUnset(request.conferenceId)) {
54143
+ body["conferenceId"] = request.conferenceId;
54144
+ }
54145
+
54146
+ let realHeaders : {[key: string ]: string} = { };
54147
+ if (!Util.isUnset(headers.commonHeaders)) {
54148
+ realHeaders = headers.commonHeaders;
54149
+ }
54150
+
54151
+ if (!Util.isUnset(headers.accountContextShrink)) {
54152
+ realHeaders["AccountContext"] = Util.toJSONString(headers.accountContextShrink);
54153
+ }
54154
+
54155
+ let req = new $OpenApi.OpenApiRequest({
54156
+ headers: realHeaders,
54157
+ body: OpenApiUtil.parseToMap(body),
54158
+ });
54159
+ let params = new $OpenApi.Params({
54160
+ action: "QueryMinutes",
54161
+ version: "2023-04-26",
54162
+ protocol: "HTTPS",
54163
+ pathname: `/dingtalk/v1/ysp/queryMinutes`,
54164
+ method: "POST",
54165
+ authType: "AK",
54166
+ style: "ROA",
54167
+ reqBodyType: "formData",
54168
+ bodyType: "json",
54169
+ });
54170
+ return $tea.cast<QueryMinutesResponse>(await this.callApi(params, req, runtime), new QueryMinutesResponse({}));
54171
+ }
54172
+
54173
+ /**
54174
+ * @summary 查询闪记录音
54175
+ *
54176
+ * @param request QueryMinutesRequest
54177
+ * @return QueryMinutesResponse
54178
+ */
54179
+ async queryMinutes(request: QueryMinutesRequest): Promise<QueryMinutesResponse> {
54180
+ let runtime = new $Util.RuntimeOptions({ });
54181
+ let headers = new QueryMinutesHeaders({ });
54182
+ return await this.queryMinutesWithOptions(request, headers, runtime);
54183
+ }
54184
+
53529
54185
  /**
53530
54186
  * @summary 查询会议闪记智能纪要
53531
54187
  *
@@ -56026,6 +56682,84 @@ export default class Client extends OpenApi {
56026
56682
  return await this.startInstanceWithOptions(request, headers, runtime);
56027
56683
  }
56028
56684
 
56685
+ /**
56686
+ * @summary 开启闪记
56687
+ *
56688
+ * @param tmpReq StartMinutesRequest
56689
+ * @param tmpHeader StartMinutesHeaders
56690
+ * @param runtime runtime options for this request RuntimeOptions
56691
+ * @return StartMinutesResponse
56692
+ */
56693
+ async startMinutesWithOptions(tmpReq: StartMinutesRequest, tmpHeader: StartMinutesHeaders, runtime: $Util.RuntimeOptions): Promise<StartMinutesResponse> {
56694
+ Util.validateModel(tmpReq);
56695
+ let request = new StartMinutesShrinkRequest({ });
56696
+ OpenApiUtil.convert(tmpReq, request);
56697
+ let headers = new StartMinutesShrinkHeaders({ });
56698
+ OpenApiUtil.convert(tmpHeader, headers);
56699
+ if (!Util.isUnset(tmpHeader.accountContext)) {
56700
+ headers.accountContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpHeader.accountContext, "AccountContext", "json");
56701
+ }
56702
+
56703
+ if (!Util.isUnset(tmpReq.tenantContext)) {
56704
+ request.tenantContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.tenantContext, "TenantContext", "json");
56705
+ }
56706
+
56707
+ let body : {[key: string ]: any} = { };
56708
+ if (!Util.isUnset(request.tenantContextShrink)) {
56709
+ body["TenantContext"] = request.tenantContextShrink;
56710
+ }
56711
+
56712
+ if (!Util.isUnset(request.conferenceId)) {
56713
+ body["conferenceId"] = request.conferenceId;
56714
+ }
56715
+
56716
+ if (!Util.isUnset(request.ownerUserId)) {
56717
+ body["ownerUserId"] = request.ownerUserId;
56718
+ }
56719
+
56720
+ if (!Util.isUnset(request.recordAudio)) {
56721
+ body["recordAudio"] = request.recordAudio;
56722
+ }
56723
+
56724
+ let realHeaders : {[key: string ]: string} = { };
56725
+ if (!Util.isUnset(headers.commonHeaders)) {
56726
+ realHeaders = headers.commonHeaders;
56727
+ }
56728
+
56729
+ if (!Util.isUnset(headers.accountContextShrink)) {
56730
+ realHeaders["AccountContext"] = Util.toJSONString(headers.accountContextShrink);
56731
+ }
56732
+
56733
+ let req = new $OpenApi.OpenApiRequest({
56734
+ headers: realHeaders,
56735
+ body: OpenApiUtil.parseToMap(body),
56736
+ });
56737
+ let params = new $OpenApi.Params({
56738
+ action: "StartMinutes",
56739
+ version: "2023-04-26",
56740
+ protocol: "HTTPS",
56741
+ pathname: `/dingtalk/v1/ysp/startMinutes`,
56742
+ method: "POST",
56743
+ authType: "AK",
56744
+ style: "ROA",
56745
+ reqBodyType: "formData",
56746
+ bodyType: "json",
56747
+ });
56748
+ return $tea.cast<StartMinutesResponse>(await this.callApi(params, req, runtime), new StartMinutesResponse({}));
56749
+ }
56750
+
56751
+ /**
56752
+ * @summary 开启闪记
56753
+ *
56754
+ * @param request StartMinutesRequest
56755
+ * @return StartMinutesResponse
56756
+ */
56757
+ async startMinutes(request: StartMinutesRequest): Promise<StartMinutesResponse> {
56758
+ let runtime = new $Util.RuntimeOptions({ });
56759
+ let headers = new StartMinutesHeaders({ });
56760
+ return await this.startMinutesWithOptions(request, headers, runtime);
56761
+ }
56762
+
56029
56763
  /**
56030
56764
  * @summary 获取日志相关人员列表
56031
56765
  *
@@ -56248,6 +56982,76 @@ export default class Client extends OpenApi {
56248
56982
  return await this.stopCloudRecordWithOptions(request, headers, runtime);
56249
56983
  }
56250
56984
 
56985
+ /**
56986
+ * @summary 暂停闪记
56987
+ *
56988
+ * @param tmpReq StopMinutesRequest
56989
+ * @param tmpHeader StopMinutesHeaders
56990
+ * @param runtime runtime options for this request RuntimeOptions
56991
+ * @return StopMinutesResponse
56992
+ */
56993
+ async stopMinutesWithOptions(tmpReq: StopMinutesRequest, tmpHeader: StopMinutesHeaders, runtime: $Util.RuntimeOptions): Promise<StopMinutesResponse> {
56994
+ Util.validateModel(tmpReq);
56995
+ let request = new StopMinutesShrinkRequest({ });
56996
+ OpenApiUtil.convert(tmpReq, request);
56997
+ let headers = new StopMinutesShrinkHeaders({ });
56998
+ OpenApiUtil.convert(tmpHeader, headers);
56999
+ if (!Util.isUnset(tmpHeader.accountContext)) {
57000
+ headers.accountContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpHeader.accountContext, "AccountContext", "json");
57001
+ }
57002
+
57003
+ if (!Util.isUnset(tmpReq.tenantContext)) {
57004
+ request.tenantContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.tenantContext, "TenantContext", "json");
57005
+ }
57006
+
57007
+ let body : {[key: string ]: any} = { };
57008
+ if (!Util.isUnset(request.tenantContextShrink)) {
57009
+ body["TenantContext"] = request.tenantContextShrink;
57010
+ }
57011
+
57012
+ if (!Util.isUnset(request.conferenceId)) {
57013
+ body["conferenceId"] = request.conferenceId;
57014
+ }
57015
+
57016
+ let realHeaders : {[key: string ]: string} = { };
57017
+ if (!Util.isUnset(headers.commonHeaders)) {
57018
+ realHeaders = headers.commonHeaders;
57019
+ }
57020
+
57021
+ if (!Util.isUnset(headers.accountContextShrink)) {
57022
+ realHeaders["AccountContext"] = Util.toJSONString(headers.accountContextShrink);
57023
+ }
57024
+
57025
+ let req = new $OpenApi.OpenApiRequest({
57026
+ headers: realHeaders,
57027
+ body: OpenApiUtil.parseToMap(body),
57028
+ });
57029
+ let params = new $OpenApi.Params({
57030
+ action: "StopMinutes",
57031
+ version: "2023-04-26",
57032
+ protocol: "HTTPS",
57033
+ pathname: `/dingtalk/v1/ysp/stopMinutes`,
57034
+ method: "POST",
57035
+ authType: "AK",
57036
+ style: "ROA",
57037
+ reqBodyType: "formData",
57038
+ bodyType: "json",
57039
+ });
57040
+ return $tea.cast<StopMinutesResponse>(await this.callApi(params, req, runtime), new StopMinutesResponse({}));
57041
+ }
57042
+
57043
+ /**
57044
+ * @summary 暂停闪记
57045
+ *
57046
+ * @param request StopMinutesRequest
57047
+ * @return StopMinutesResponse
57048
+ */
57049
+ async stopMinutes(request: StopMinutesRequest): Promise<StopMinutesResponse> {
57050
+ let runtime = new $Util.RuntimeOptions({ });
57051
+ let headers = new StopMinutesHeaders({ });
57052
+ return await this.stopMinutesWithOptions(request, headers, runtime);
57053
+ }
57054
+
56251
57055
  /**
56252
57056
  * @summary 订阅公共日历
56253
57057
  *