Interface InternalLinkTypeStoryAlbum

The link is a link to an album of stories. Call searchPublicChat with the given username, then call getStoryAlbumStories with the received chat identifier and the given story album identifier, then show the story album if received. Subtype of InternalLinkType.

interface InternalLinkTypeStoryAlbum {
    @type: "internalLinkTypeStoryAlbum";
    story_album_id: number;
    story_album_owner_username: string;
}

Properties

@type: "internalLinkTypeStoryAlbum"
story_album_id: number

Story album identifier.

story_album_owner_username: string

Username of the owner of the story album.