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.

Boost

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
├── gifttrue (optional)
├── giveawaytrue (optional)
├── unclaimedtrue (optional)
├── idstring
├── user_idlong (optional)
├── giveaway_msg_idint (optional)
├── dateint
├── expiresint
├── used_gift_slugstring (optional)
├── multiplierint (optional)
└── starslong (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,
)