mirror of
https://github.com/teloxide/teloxide.git
synced 2024-12-22 06:25:10 +01:00
Add sender_boost_count
field to MessageCommon
struct
This commit is contained in:
parent
109454ed84
commit
4905758a78
2 changed files with 5 additions and 0 deletions
|
@ -128,6 +128,10 @@ pub struct MessageCommon {
|
|||
/// the message
|
||||
pub quote: Option<TextQuote>,
|
||||
|
||||
/// If the sender of the message boosted the chat, the number of boosts
|
||||
/// added by the user
|
||||
pub sender_boost_count: Option<u16>,
|
||||
|
||||
/// Date the message was last edited in Unix time.
|
||||
#[serde(default, with = "crate::types::serde_opt_date_from_unix_timestamp")]
|
||||
pub edit_date: Option<DateTime<Utc>>,
|
||||
|
|
|
@ -548,6 +548,7 @@ mod test {
|
|||
forward_origin: None,
|
||||
external_reply: None,
|
||||
quote: None,
|
||||
sender_boost_count: None,
|
||||
edit_date: None,
|
||||
media_kind: MediaKind::Text(MediaText {
|
||||
text: String::from("hello there"),
|
||||
|
|
Loading…
Reference in a new issue