setBusinessAccountBio¶
Returns: bool
- class litegram.methods.set_business_account_bio.SetBusinessAccountBio(*, business_connection_id: str, bio: str | None = None, **extra_data: Any)[source]¶
Changes the bio of a managed business account. Requires the can_change_bio business bot right. Returns
Trueon success.Source: https://core.telegram.org/bots/api#setbusinessaccountbio
Usage¶
As bot method¶
result: bool = await bot.set_business_account_bio(...)
Method as object¶
Imports:
from litegram.methods.set_business_account_bio import SetBusinessAccountBioalias:
from litegram.methods import SetBusinessAccountBio
With specific bot¶
result: bool = await bot(SetBusinessAccountBio(...))
As reply into Webhook in handler¶
return SetBusinessAccountBio(...)