Skip to content

export abstract Class

BaseGroupChat ​

extends ​

BaseChat

implements ​

BaseGroupChatPacket

Constructor ​

ts
new BaseGroupChat( client, packet )
ParameterTypeDescription
clientClient
packetChatPacket

Properties ​

get partial : boolean ​

accent_color_id? : number ​

active_usernames? : string[] ​

available_reactions? : ReactionType[] ​

background_custom_emoji_id? : string ​

can_send_paid_media? : true ​

can_set_sticker_set? : true ​

readonly client : Client ​

custom_emoji_sticker_set_name? : string ​

description? : string ​

has_aggressive_anti_spam_enabled? : true ​

has_hidden_members? : true ​

has_protected_content? : true ​

has_visible_history? : true ​

id : number ​

invites : ChatInviteLinksManager ​

is_forum? : true ​

join_by_request? : true ​

join_to_send_messages? : true ​

last_message_id? : number ​

linked_chat_id? : number ​

location? : ChatLocation ​

max_reaction_count? : number ​

members : MembersManager ​

message_auto_delete_time? : number ​

message_thread_id? : number ​

messages : MessagesManager ​

permissions? : ChatPermissions ​

photo? : ChatPhoto ​

pinned_message? : Message ​

profile_accent_color_id? : number ​

profile_background_custom_emoji_id? : string ​

requests : ChatRequestsManager ​

slow_mode_delay? : number ​

sticker_set_name? : string ​

title? : string ​

type : "channel" | "group" | "supergroup" ​

unrestrict_boost_count? : number ​

username? : string ​

Methods ​

asyncadministrators( ) ​

Returns: Promise<Member[]>

createMessageCollector( options ) ​

Creates a message collector to the current chat.

ParameterTypeDescription
optionsMessageCollectorOptionsThe options for the collector.

Returns: MessageCollector

asyncdeletePhoto( ) ​

Returns: Promise<boolean>

asyncdeleteStickerSet( ) ​

Returns: Promise<boolean>

asyncfetch( ) ​

Returns: Promise<boolean | BaseChat>

asyncleave( ) ​

Returns: Promise<boolean>

asyncsend( method, packet, form_data ) ​

Sends a message to the current channel.

ParameterTypeDescription
methodMessagePayloadMethodThe method of the message.
packetMessagePayloadThe packet of what the message will contain.
form_data?FormDataBuilderThe form data for uploading media, see also File

Returns: Promise<Message>

asyncsendInvoice( id ) ​

Sends the stored invoice with the id to the current chat.

ParameterTypeDescription
idstringThe id of the invoice.

Returns: Promise<void | Message>

asyncsendText( text ) ​

Sends a text message to the current chat.

ParameterTypeDescription
textstringThe text content of the message.

Returns: Promise<Message>

asyncsetDescription( description ) ​

ParameterTypeDescription
descriptionstring

Returns: Promise<boolean>

asyncsetPhoto( photo, form ) ​

ParameterTypeDescription
photoInputFile
form?FormData

Returns: Promise<boolean>

asyncsetStrickerSet( sticker_set_name ) ​

ParameterTypeDescription
sticker_set_namestring

Returns: Promise<boolean>

asyncsetTitle( title ) ​

ParameterTypeDescription
titlestring

Returns: Promise<boolean>