Interface StoryAreaTypeWeather

An area with information about weather. Subtype of StoryAreaType.

interface StoryAreaTypeWeather {
    @type: "storyAreaTypeWeather";
    background_color: number;
    emoji: string;
    temperature: number;
}

Properties

@type: "storyAreaTypeWeather"
background_color: number

A color of the area background in the ARGB format.

emoji: string

Emoji representing the weather.

temperature: number

Temperature, in degree Celsius.