teloxide_core/payloads/edit_story.rs
1//! Generated by `codegen_payloads`, do not edit by hand.
2
3use serde::Serialize;
4
5use crate::types::{
6 BusinessConnectionId, InputStoryContent, MessageEntity, ParseMode, Story, StoryArea, StoryId,
7};
8
9impl_payload! {
10 /// Edits a story previously posted by the bot on behalf of a managed business account. Requires the _can_manage_stories_ business bot right. Returns [`Story`] on success.
11 ///
12 /// [`Story`]: crate::types::Story
13 #[derive(Debug, Clone, Serialize)]
14 pub EditStory (EditStorySetters) => Story {
15 required {
16 /// Unique identifier of the business connection
17 pub business_connection_id: BusinessConnectionId,
18 /// Unique identifier of the story to edit
19 pub story_id: StoryId,
20 /// Content of the story
21 pub content: InputStoryContent,
22 }
23 optional {
24 /// Caption of the story, 0-2048 characters after entities parsing
25 pub caption: String [into],
26 /// Mode for parsing entities in the story caption. See [formatting options] for more details
27 ///
28 /// [formatting options]: https://core.telegram.org/bots/api#formatting-options
29 pub parse_mode: ParseMode,
30 /// List of special entities that appear in the caption, which can be specified instead of _parse_mode_
31 pub caption_entities: Vec<MessageEntity> [collect],
32 /// List of clickable areas to be shown on the story
33 pub areas: Vec<StoryArea> [collect],
34 }
35 }
36}