Boost
- class pyrogram.raw.base.Boost
Info about one or more boosts applied by a specific user.
- Constructors:
This base type has 1 constructor available.
Info about one or more boosts applied by a specific user.
TL Schema
boost#4b3e14d6
flags:#
gift:flags.1?true
giveaway:flags.2?true
unclaimed:flags.3?true
id:string
user_id:flags.0?long
giveaway_msg_id:flags.2?int
date:int
expires:int
used_gift_slug:flags.4?string
multiplier:flags.5?int
stars:flags.6?long
= Boost
Parameter Tree
Boost
├── gift →
true (optional)├── giveaway →
true (optional)├── unclaimed →
true (optional)├── id →
string├── user_id →
long (optional)├── giveaway_msg_id →
int (optional)├── date →
int├── expires →
int├── used_gift_slug →
string (optional)├── multiplier →
int (optional)└── stars →
long (optional)Example
Boost(
gift=None,
giveaway=None,
unclaimed=None,
id="text",
user_id=0,
giveaway_msg_id=0,
date=0,
expires=0,
used_gift_slug="text",
multiplier=0,
stars=0,
)