interface PackageMediaData {
    caption?: string;
    flags?: object;
    loop?: boolean;
    thumbnail?: string;
    type?: string;
    url?: string;
}

Properties

caption?: string

A caption for the media element.

flags?: object

An object of optional key/value flags.

loop?: boolean

Should the media play on loop?

thumbnail?: string

A link to the thumbnail for the media element.

type?: string

Usage type for the media asset. "setup" means it will be used on the setup screen.

url?: string

A web url link to the media element.