This commit is contained in:
Maybe Waffle 2023-01-14 18:23:13 +04:00
parent 63e696d8c9
commit f5afbf2188
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,7 @@ use serde::{Deserialize, Serialize};
/// This object represents a service message about a forum topic closed in the /// This object represents a service message about a forum topic closed in the
/// chat. Currently holds no information. /// chat. Currently holds no information.
/// ///
/// [The official docs](https://core.telegram.org/bots/api#forumtopiccreated). /// [The official docs](https://core.telegram.org/bots/api#forumtopicclosed).
#[serde_with_macros::skip_serializing_none] #[serde_with_macros::skip_serializing_none]
#[derive(Clone, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)] #[derive(Clone, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)]
pub struct ForumTopicClosed; pub struct ForumTopicClosed;

View file

@ -3,7 +3,7 @@ use serde::{Deserialize, Serialize};
/// This object represents a service message about a forum topic reopened in the /// This object represents a service message about a forum topic reopened in the
/// chat. Currently holds no information. /// chat. Currently holds no information.
/// ///
/// [The official docs](https://core.telegram.org/bots/api#forumtopiccreated). /// [The official docs](https://core.telegram.org/bots/api#forumtopicreopened).
#[serde_with_macros::skip_serializing_none] #[serde_with_macros::skip_serializing_none]
#[derive(Clone, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)] #[derive(Clone, Debug, Eq, Hash, PartialEq, Serialize, Deserialize)]
pub struct ForumTopicReopened; pub struct ForumTopicReopened;