AvailableEffect

class pyrogram.raw.base.AvailableEffect

Describes a message effect ».

Constructors:

This base type has 1 constructor available.

AvailableEffect

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_requiredtrue (optional)
├── idlong
├── emoticonstring
├── static_icon_idlong (optional)
├── effect_sticker_idlong
└── effect_animation_idlong (optional)

Example

AvailableEffect(
    premium_required=None,
    id=0,
    emoticon="text",
    static_icon_id=0,
    effect_sticker_id=0,
    effect_animation_id=0,
)