setStickerSetTitle¶
Returns: bool
- class litegram.methods.set_sticker_set_title.SetStickerSetTitle(*, name: str, title: str, **extra_data: Any)[source]¶
Use this method to set the title of a created sticker set. Returns
Trueon success.Source: https://core.telegram.org/bots/api#setstickersettitle
Usage¶
As bot method¶
result: bool = await bot.set_sticker_set_title(...)
Method as object¶
Imports:
from litegram.methods.set_sticker_set_title import SetStickerSetTitlealias:
from litegram.methods import SetStickerSetTitle
With specific bot¶
result: bool = await bot(SetStickerSetTitle(...))
As reply into Webhook in handler¶
return SetStickerSetTitle(...)