macOS SDK API Reference
Loading...
Searching...
No Matches
ZoomSDKNotificationServiceController.h
Go to the documentation of this file.
1//
2
3#import <Foundation/Foundation.h>
4#import "ZoomSDKErrors.h"
5
6NS_ASSUME_NONNULL_BEGIN
7
8@interface ZoomSDKInMeetingDeviceInfo : NSObject
12@property (assign, nonatomic,readonly) int index;
13
17@property (copy, nonatomic,readonly) NSString *deviceName;
18
22@property (copy, nonatomic,readonly) NSString *meetingTopic;
23
27@property (assign, nonatomic,readonly) long long meetingNumber;
28@end
29
30@protocol ZoomSDKNotificationServiceDelegate <NSObject>
31
36-(void)onTransferMeetingStatus:(BOOL)bSuccess;
37
42-(void)onMeetingDeviceListChanged:(NSArray <ZoomSDKInMeetingDeviceInfo *>*)deviceList;
43
44@end
45
47
48@property(nonatomic, assign, nullable)id<ZoomSDKNotificationServiceDelegate> delegate;
49
53- (BOOL)isTransferMeetingEnabled;
54
60- (ZoomSDKError)transferMeeting:(int)index;
61@end
62
63NS_ASSUME_NONNULL_END
ZoomSDKError
Enumeration of common errors of SDK.