Interface ChatFolder

Represents a folder for user chats.

interface ChatFolder {
    @type: "chatFolder";
    color_id: number;
    exclude_archived?: boolean;
    exclude_muted?: boolean;
    exclude_read?: boolean;
    excluded_chat_ids: number[];
    icon: ChatFolderIcon;
    include_bots?: boolean;
    include_channels?: boolean;
    include_contacts?: boolean;
    include_groups?: boolean;
    include_non_contacts?: boolean;
    included_chat_ids: number[];
    is_shareable?: boolean;
    name: ChatFolderName;
    pinned_chat_ids: number[];
}

Properties

@type: "chatFolder"
color_id: number

The identifier of the chosen color for the chat folder icon; from -1 to 6. If -1, then color is disabled. Can't be changed if folder tags are disabled or the current user doesn't have Telegram Premium subscription.

exclude_archived?: boolean

True, if archived chats need to be excluded.

exclude_muted?: boolean

True, if muted chats need to be excluded.

exclude_read?: boolean

True, if read chats need to be excluded.

excluded_chat_ids: number[]

The chat identifiers of always excluded chats in the folder. There can be up to getOption("chat_folder_chosen_chat_count_max") always excluded non-secret chats and the same number of secret chats, but the limit can be increased with Telegram Premium.

The chosen icon for the chat folder; may be null. If null, use getChatFolderDefaultIconName to get default icon name for the folder.

include_bots?: boolean

True, if bots need to be included.

include_channels?: boolean

True, if channels need to be included.

include_contacts?: boolean

True, if contacts need to be included.

include_groups?: boolean

True, if basic groups and supergroups need to be included.

include_non_contacts?: boolean

True, if non-contact users need to be included.

included_chat_ids: number[]

The chat identifiers of always included chats in the folder. There can be up to getOption("chat_folder_chosen_chat_count_max") pinned and always included non-secret chats and the same number of secret chats, but the limit can be increased with Telegram Premium.

is_shareable?: boolean

True, if at least one link has been created for the folder.

The name of the folder.

pinned_chat_ids: number[]

The chat identifiers of pinned chats in the folder. There can be up to getOption("chat_folder_chosen_chat_count_max") pinned and always included non-secret chats and the same number of secret chats, but the limit can be increased with Telegram Premium.