Video
data class Video(val video: Blob, val captions: List<VideoCaption>? = null, val alt: String? = null, val aspectRatio: AspectRatio? = null, val presentation: VideoPresentation? = null)
Parameters
video
The mp4 video file. May be up to 100mb, formerly limited to 50mb.
alt
Alt text description of the video, for accessibility.
presentation
A hint to the client about how to present the video.
Constructors
Link copied to clipboard
constructor(video: Blob, captions: List<VideoCaption>? = null, alt: String? = null, aspectRatio: AspectRatio? = null, presentation: VideoPresentation? = null)