pub struct CreateChatInviteLink {
pub chat_id: ChatId,
pub name: Option<String>,
pub expire_date: Option<u64>,
pub member_limit: Option<u32>,
pub creates_join_request: Option<bool>,
}Expand description
Use this method to create an additional invite link for a chat. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. The link can be revoked using the method revokeChatInviteLink. Returns the new invite link as ChatInviteLink object.
Fields§
§chat_id: ChatIdUnique identifier for the target group or username of the target supergroup or channel (in the format @username)
name: Option<String>Invite link name; 0-32 characters
expire_date: Option<u64>Point in time (Unix timestamp) when the link will expire
member_limit: Option<u32>Maximum number of users that can be members of the chat simultaneously after joining the chat via this invite link; 1-99999
creates_join_request: Option<bool>True, if users joining the chat via the link need to be approved by chat administrators. If True, member_limit can’t be specified
Implementations§
Source§impl CreateChatInviteLink
impl CreateChatInviteLink
Sourcepub fn with_expire_date(self, expire_date: u64) -> Self
pub fn with_expire_date(self, expire_date: u64) -> Self
Set link expire date
Sourcepub fn with_member_limit(self, member_limit: u32) -> Self
pub fn with_member_limit(self, member_limit: u32) -> Self
Set link member limit
Sourcepub fn create_join_reqeuest(self) -> Self
pub fn create_join_reqeuest(self) -> Self
Set creates_join_request to true
Trait Implementations§
Source§impl Clone for CreateChatInviteLink
impl Clone for CreateChatInviteLink
Source§fn clone(&self) -> CreateChatInviteLink
fn clone(&self) -> CreateChatInviteLink
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more