pub struct ChatMemberRestricted {
pub user: User,
pub is_member: bool,
pub can_change_info: bool,
pub can_invite_users: bool,
pub can_pin_messages: bool,
pub can_send_messages: bool,
pub can_send_media_messages: bool,
pub can_send_polls: bool,
pub can_send_other_messages: bool,
pub can_add_web_page_previews: bool,
pub until_date: i64,
}
Expand description
Represents a chat member that is under certain restrictions in the chat. Supergroups only.
Fields§
§user: User
Information about the user
is_member: bool
True, if the user is a member of the chat at the moment of the request
can_change_info: bool
True, if the user is allowed to change the chat title, photo and other settings
can_invite_users: bool
True, if the user is allowed to invite new users to the chat
can_pin_messages: bool
True, if the user is allowed to pin messages
can_send_messages: bool
True, if the user is allowed to send text messages, contacts, locations and venues
can_send_media_messages: bool
True, if the user is allowed to send audios, documents, photos, videos, video notes and voice notes
can_send_polls: bool
True, if the user is allowed to send polls
can_send_other_messages: bool
True, if the user is allowed to send animations, games, stickers and use inline bots
can_add_web_page_previews: bool
True, if the user is allowed to add web page previews to their messages
until_date: i64
Date when restrictions will be lifted for this user; unix time. If 0, then the user is restricted forever
Implementations§
Trait Implementations§
Source§impl Clone for ChatMemberRestricted
impl Clone for ChatMemberRestricted
Source§fn clone(&self) -> ChatMemberRestricted
fn clone(&self) -> ChatMemberRestricted
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more