IVSParticipantCapability
Objective-C
enum IVSParticipantCapability : NSUInteger {}
                Swift
struct IVSParticipantCapability : OptionSet, @unchecked Sendable
                A bitwise enum representing the capabilities that can be performed by this IVSParticipantInfo.
- 
                  
                  
No actions can be taken on this participant
Declaration
Objective-C
IVSParticipantCapabilityNone = 0 - 
                  
                  
This participant can be published
Declaration
Objective-C
IVSParticipantCapabilityPublish = 1 << 0Swift
static var publish: IVSParticipantCapability { get } - 
                  
                  
This participant can be subscribed to
Declaration
Objective-C
IVSParticipantCapabilitySubscribe = 1 << 1Swift
static var subscribe: IVSParticipantCapability { get } 
        IVSParticipantCapability Enumeration Reference