Interface StoryAlbum

Describes album of stories.

interface StoryAlbum {
    @type: "storyAlbum";
    id: number;
    name: string;
    photo_icon: Photo;
    video_icon: Video;
}

Properties

@type: "storyAlbum"
id: number

Unique identifier of the album.

name: string

Name of the album.

photo_icon: Photo

Icon of the album; may be null if none.

video_icon: Video

Video icon of the album; may be null if none.