PlanetKitVideoPauseReason
@objc
@frozen
public enum PlanetKitVideoPauseReason : Int
extension PlanetKitVideoPauseReason: CustomStringConvertible
An enumeration representing the reasons for pausing a video.
-
The reason for pausing is unknown.
Declaration
Swift
case unknown
-
The user paused the video.
Declaration
Swift
case user
-
The video was paused due to an interruption.
Declaration
Swift
case interrupt
-
The reason for pausing is undefined.
Declaration
Swift
case undefined
-
The video was paused internally.
Declaration
Swift
case `internal`
-
The video was paused when a user has set
PlanetKitResponseOnEnableVideo
topause
and the peer requests enabling of a video call.Declaration
Swift
case enableVideoResponse
-
The video was paused because the camera is inactive.
Declaration
Swift
case cameraInactive
-
The video was paused due to a hold.
Declaration
Swift
case hold
-
Declaration
Swift
public var description: String { get }