in Sources/Bridget/native.swift [933:962]
func insertVideos(videoSlots: TList<VideoSlot>) throws
///
/// - Parameters:
/// - videoSlots:
/// - Throws:
func updateVideos(videoSlots: TList<VideoSlot>) throws
///
/// - Parameters:
/// - videoEvent:
/// - Throws:
func sendVideoEvent(videoEvent: VideoEvent) throws
/// This method is used by the web layer to instruct the native layer to activate or deactivate fullscreen mode
/// This is currently only required for Android as the fullscreen control on the YouTube player in Android webviews is a no-op
/// @param isFullscreen true if the web layer is fullscreen, false otherwise
/// @returns true if the native operation was successful, false otherwise
/// On Android, this method will return true if the operation was successful, false otherwise
/// On iOS, this method will always return false
///
/// - Parameters:
/// - isFullscreen:
/// - Returns: Bool
/// - Throws:
func setFullscreen(isFullscreen: Bool) throws -> Bool
}
open class VideosClient : TClient /* , Videos */ {