PlanetKitSubgroupUnsubscribeFailReason

@objc
@frozen
public enum PlanetKitSubgroupUnsubscribeFailReason : Int
extension PlanetKitSubgroupUnsubscribeFailReason: CustomStringConvertible

An enumeration representing the reasons for a failed unsubscribe operation in the subgroup.

  • The reason for the failure is undefined.

    Declaration

    Swift

    case undefined = 0
  • The failure is due to the presence of active audio.

    Declaration

    Swift

    case hasActiveAudio = 1
  • The failure is due to the presence of active video.

    Declaration

    Swift

    case hasActiveVideo = 2
  • The failure is because the user is not subscribed.

    Declaration

    Swift

    case notSubscribed = 3
  • The failure is due to the presence of active screen share.

    Declaration

    Swift

    case hasActiveScreenShare = 4
  • The reason for the failure is unknown.

    Declaration

    Swift

    case unknown = 1000

CustomStringConvertible

  • A textual representation of PlanetKitSubgroupUnsubscribeFailReason instance.

    Declaration

    Swift

    public var description: String { get }