interface MediaInfoJson {
    altText?: string;
    caption?: string;
    refreshInterval?: number;
    title?: string;
    type?: string;
    value?: ValueJson;
}

Properties

altText?: string

A string providing the alternate text for the media.

caption?: string

A caption describing the media. This can contain a field name enclosed in {}, such as {IMAGE_CAPTION}.

refreshInterval?: number

Refresh interval of the layer in minutes. Non-zero value indicates automatic layer refresh at the specified interval. Value of 0 indicates auto refresh is not enabled. If the property does not exist, it's equivalent to having a value of 0. Only applicable when type is set to image.

title?: string

A title for the media. This can contain a field name enclosed in {}, such as {IMAGE_TITLE}.

type?: string

Defines the type of media. One of the MediaJsonType constants.

value?: ValueJson

Contains information about how the image should be retrieved or how the chart should be constructed.