mirror of
https://github.com/teloxide/teloxide.git
synced 2025-03-26 08:23:03 +01:00
Add is_from_offline
field to MessageCommon
struct
This commit is contained in:
parent
ae83ff15a2
commit
8314780959
2 changed files with 9 additions and 3 deletions
|
@ -154,6 +154,11 @@ pub struct MessageCommon {
|
||||||
/// `true`, if the message can't be forwarded.
|
/// `true`, if the message can't be forwarded.
|
||||||
#[serde(default, skip_serializing_if = "std::ops::Not::not")]
|
#[serde(default, skip_serializing_if = "std::ops::Not::not")]
|
||||||
pub has_protected_content: bool,
|
pub has_protected_content: bool,
|
||||||
|
|
||||||
|
/// `true`, if the message was sent by an implicit action, for example, as
|
||||||
|
/// an away or a greeting business message, or as a scheduled message
|
||||||
|
#[serde(default, skip_serializing_if = "std::ops::Not::not")]
|
||||||
|
pub is_from_offline: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[serde_with::skip_serializing_none]
|
#[serde_with::skip_serializing_none]
|
||||||
|
|
|
@ -567,6 +567,7 @@ mod test {
|
||||||
author_signature: None,
|
author_signature: None,
|
||||||
is_automatic_forward: false,
|
is_automatic_forward: false,
|
||||||
has_protected_content: false,
|
has_protected_content: false,
|
||||||
|
is_from_offline: false,
|
||||||
}),
|
}),
|
||||||
}),
|
}),
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue