NEMeetingKit V4.11.0
载入中...
搜索中...
未找到
NEMeetingTranscriptionInfo.h
浏览该文件的文档.
1// Copyright (c) 2022 NetEase, Inc. All rights reserved.
2// Use of this source code is governed by a MIT license that can be
3// found in the LICENSE file.
4
5#import <Foundation/Foundation.h>
6
7NS_ASSUME_NONNULL_BEGIN
8
22
26@interface NEMeetingTranscriptionMessage : NSObject
30@property(nonatomic, copy) NSString *fromUserUuid;
34@property(nonatomic, copy) NSString *fromNickname;
38@property(nonatomic, copy) NSString *content;
42@property(nonatomic, assign) NSInteger timestamp;
43
44@end
45
49@interface NEMeetingTranscriptionInterval : NSObject
53@property(nonatomic, assign) NSInteger start;
57@property(nonatomic, assign) NSInteger stop;
58
59@end
60
64@interface NEMeetingTranscriptionInfo : NSObject
68@property(nonatomic, assign) NEMeetingTranscriptionState state;
72@property(nonatomic, strong) NSArray<NEMeetingTranscriptionInterval *> *timeRanges;
77@property(nonatomic, strong) NSArray<NSString *> *originalNosFileKeys;
81@property(nonatomic, strong) NSArray<NSString *> *txtNosFileKeys;
85@property(nonatomic, strong) NSArray<NSString *> *wordNosFileKeys;
89@property(nonatomic, strong) NSArray<NSString *> *pdfNosFileKeys;
90
91@end
92
93NS_ASSUME_NONNULL_END
NEMeetingTranscriptionState
定义 NEMeetingTranscriptionInfo.h:12
@ NEMeetingTranscriptionStateGenerated
定义 NEMeetingTranscriptionInfo.h:20
@ NEMeetingTranscriptionStateGenerating
定义 NEMeetingTranscriptionInfo.h:16
定义 NEMeetingTranscriptionInfo.h:65
定义 NEMeetingTranscriptionInfo.h:50
定义 NEMeetingTranscriptionInfo.h:27
NSInteger timestamp
定义 NEMeetingTranscriptionInfo.h:42
NSString * fromNickname
定义 NEMeetingTranscriptionInfo.h:34
NSString * content
定义 NEMeetingTranscriptionInfo.h:38
NSString * fromUserUuid
定义 NEMeetingTranscriptionInfo.h:30