Chat sticker set
You can set chat sticker set or delete it
Set chat sticker set
ChatStickerSet class-method or .setChatStickerSet answer method take arguments:
Argument
Description
Required
1
2
import { Controller, OnCommand, ChatStickerSet } from 'nestgram';
import { AppService } from './app.service';
@Controller()
export class AppController {
constructor(private readonly appService: AppService) {}
@OnCommand('update_set')
updateChatStickerSet() {
return new ChatStickerSet('stickers_by_botname')
.next('Chat sticker set updated!');
}
}Delete chat sticker set
Last updated