mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-02 09:38:28 +01:00
1.1 KiB
1.1 KiB
title | description | nav_exclude | image |
---|---|---|---|
webPageAttributeStory | Webpage preview of a Telegram story | true | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: webPageAttributeStory
Webpage preview of a Telegram story
Attributes:
Name | Type | Required | Description |
---|---|---|---|
peer | long | Yes | Peer that posted the story |
id | int | Yes | Story ID |
story | StoryItem | Optional | May contain the story, if not the story should be fetched when and if needed using stories.getStoriesByID with the above id and peer . |
Type: WebPageAttribute
Example:
$webPageAttributeStory = ['_' => 'webPageAttributeStory', 'peer' => long, 'id' => int, 'story' => StoryItem];