Interface GetStoryAlbumStories

Returns the list of stories added to the given story album. For optimal performance, the number of returned stories is chosen by TDLib. Request type for Tdjson#getStoryAlbumStories.

interface GetStoryAlbumStories {
    @type: "getStoryAlbumStories";
    chat_id: number;
    limit: number;
    offset: number;
    story_album_id: number;
}

Properties

@type: "getStoryAlbumStories"
chat_id: number

Chat identifier.

limit: number

The maximum number of stories to be returned. For optimal performance, the number of returned stories is chosen by TDLib and can be smaller than the specified limit.

offset: number

Offset of the first entry to return; use 0 to get results from the first album story.

story_album_id: number

Story album identifier.