Interface EditChatFolderInviteLink

Edits an invite link for a chat folder. Request type for Tdjson#editChatFolderInviteLink.

interface EditChatFolderInviteLink {
    @type: "editChatFolderInviteLink";
    chat_folder_id: number;
    chat_ids: number[];
    invite_link: string;
    name: string;
}

Properties

@type: "editChatFolderInviteLink"
chat_folder_id: number

Chat folder identifier.

chat_ids: number[]

New identifiers of chats to be accessible by the invite link. Use getChatsForChatFolderInviteLink to get suitable chats. Basic groups will be automatically converted to supergroups before link editing.

invite_link: string

Invite link to be edited.

name: string

New name of the link; 0-32 characters.