AvailableEffect
- class pyrogram.raw.base.AvailableEffect
Describes a message effect ».
- Constructors:
This base type has 1 constructor available.
Represents a message effect ».
TL Schema
availableEffect#93c3e27e
flags:#
premium_required:flags.2?true
id:long
emoticon:string
static_icon_id:flags.0?long
effect_sticker_id:long
effect_animation_id:flags.1?long
= AvailableEffect
Parameter Tree
AvailableEffect
├── premium_required →
true (optional)├── id →
long├── emoticon →
string├── static_icon_id →
long (optional)├── effect_sticker_id →
long└── effect_animation_id →
long (optional)Example
AvailableEffect(
premium_required=None,
id=0,
emoticon="text",
static_icon_id=0,
effect_sticker_id=0,
effect_animation_id=0,
)