6#import <Foundation/Foundation.h>
7#import <MobileRTC/MobileRTCConstants.h>
17@property (copy, nonatomic, readonly) NSString * _Nullable
contactID;
21@property (copy, nonatomic, readonly) NSString * _Nullable
contactName;
33@property (copy, nonatomic, readonly) NSString * _Nullable
personalNote;
37@property (copy, nonatomic, readonly) NSString * _Nullable
companyName;
41@property (copy, nonatomic, readonly) NSString * _Nullable
department;
45@property (copy, nonatomic, readonly) NSString * _Nullable
jobTitle;
49@property (copy, nonatomic, readonly) NSString * _Nullable
phoneNumber;
53@property (copy, nonatomic, readonly) NSString * _Nullable
email;
66@property (copy, nonatomic, readonly) NSString * _Nullable senderId;
71@property (copy, nonatomic, readonly) NSString * _Nullable senderName;
76@property (assign, nonatomic, readonly)
long long meetingNumber;
81@property (assign, nonatomic, readonly) BOOL isChannelInvitation;
86@property (copy, nonatomic, readonly) NSString *_Nullable channelName;
91@property (assign, nonatomic, readonly)
unsigned int channelMemberCount;
96- (void)setScreenName:(NSString * _Nullable)screenName;
119@protocol MobileRTCPresenceHelperDelegate <NSObject>
124- (void)onRequestStarContact:(NSArray <NSString *> *_Nullable)contactIDList;
144- (void)onStarContactListChanged:(NSArray <NSString *> *_Nullable)contactIDList isAdd:(BOOL)add;
155- (void)onMeetingInvitationCanceled:(
long long)meetingNumber;
161- (void)onMeetingAcceptedByOtherDevice:(
long long)meetingNumber;
167- (void)onMeetingInvitationDeclined:(NSString *_Nullable)contactID;
173- (void)onMeetingDeclinedByOtherDevice:(
long long)meetingNumber;
187@property(nonatomic, assign, nullable)id<MobileRTCPresenceHelperDelegate> delegate;
221- (
MobileRTCSDKError)inviteContactList:(NSArray <NSString *> *_Nonnull)contactIDList;
227- (
MobileRTCSDKError)requestContactDetailInfo:(NSArray <NSString *> *_Nonnull)contactIDList;
234- (
MobileRTCSDKError)subscribeContactPresence:(NSArray <NSString *> *_Nonnull)contactIDList;
241- (
MobileRTCSDKError)unSubscribeContactPresence:(NSArray <NSString *> *_Nonnull)contactIDList;
MobileRTCSDKError
Enumeration of SDK error.
MobileRTCPresenceStatus
Enumeration of user's presence status. For more information, please visit https://support....
Process after the user receives an invitation from another user to join a meeting.
Interface to manage contact presence and meeting invitations.