Struct tg_bot_models::RestrictChatMember[][src]

pub struct RestrictChatMember {
    pub chat_id: PolymorphChatId,
    pub user_id: i64,
    pub until_date: Option<i64>,
    pub can_send_messages: Option<bool>,
    pub can_send_media_messages: Option<bool>,
    pub can_send_other_messages: Option<bool>,
    pub can_add_web_page_previews: Option<bool>,
}

Use this method to restrict a user in a supergroup. The bot must be an administrator in the supergroup for this to work and must have the appropriate admin rights. Pass True for all boolean parameters to lift restrictions from a user. Returns True on success.

Fields

Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername)

Unique identifier of the target user

Date when restrictions will be lifted for the user, unix time. If user is restricted for more than 366 days or less than 30 seconds from the current time, they are considered to be restricted forever

Pass True, if the user can send text messages, contacts, locations and venues

Pass True, if the user can send audios, documents, photos, videos, video notes and voice notes, implies can_send_messages

Pass True, if the user can send animations, games, stickers and use inline bots, implies can_send_media_messages

Pass True, if the user may add web page previews to their messages, implies can_send_media_messages

Trait Implementations

impl Debug for RestrictChatMember
[src]

Formats the value using the given formatter. Read more

impl Clone for RestrictChatMember
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for RestrictChatMember
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl PartialOrd for RestrictChatMember
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

Auto Trait Implementations