VideoPauseState
@objc
public enum VideoPauseState : Int, CaseIterable, CustomStringConvertibleVideoPauseState describes the pause status of a video tile.
- 
                  
                  The video tile is not paused DeclarationSwift case unpaused = 0
- 
                  
                  The video tile has been paused by the user, and will only be unpaused if the user requests it to resume. DeclarationSwift case pausedByUserRequest = 1
- 
                  
                  The video tile has been paused to save on local downlink bandwidth. When the connection improves, it will be automatically unpaused by the client. User requested pauses will shadow this pause, but if the connection has not recovered on resume the tile will still be paused with this state. DeclarationSwift case pausedForPoorConnection = 2
- 
                  
                  DeclarationSwift public var description: String { get }
