4 #ifndef OWT_CONFERENCE_OBJC_OWTCONFERENCEPARTICIPANT_H_ 5 #define OWT_CONFERENCE_OBJC_OWTCONFERENCEPARTICIPANT_H_ 6 #import <Foundation/Foundation.h> 7 #import <WebRTC/RTCMacros.h> 8 NS_ASSUME_NONNULL_BEGIN
14 - (instancetype)init NS_UNAVAILABLE;
18 @property(readonly, strong) NSString*
role;
20 @property(readonly, strong) NSString*
userId;
22 @property(nonatomic, weak) id<OWTConferenceParticipantDelegate> delegate;
32 #endif // OWT_CONFERENCE_OBJC_OWTCONFERENCEPARTICIPANT_H_ Definition: OWTConferenceParticipant.h:26
NSString * userId
The user ID of the participant. It can be integrated into existing account management system...
Definition: OWTConferenceParticipant.h:20
NSString * role
Role of the participant.
Definition: OWTConferenceParticipant.h:18
NSString * participantId
The ID of the participant. It varies when a single user join different conferences.
Definition: OWTConferenceParticipant.h:16
This class represents an attendee in a conference.
Definition: OWTConferenceParticipant.h:13