EmojiGroup

class pyrogram.raw.base.EmojiGroup

Represents an emoji category.

Constructors:

This base type has 3 constructors available.

EmojiGroup

Represents an emoji category.

EmojiGroupGreeting

Represents an emoji category, that should be moved to the top of the list when choosing a sticker for a business introduction

EmojiGroupPremium

An emoji category, used to select all Premium-only stickers (i.e. those with a Premium effect »)/Premium-only custom emojis (i.e. those where the documentAttributeCustomEmoji.free flag is not set).

TL Schema

emojiGroup#7a9abda9
title:string
icon_emoji_id:long
emoticons:Vector<string>

= EmojiGroup

Parameter Tree

EmojiGroup
├── titlestring
├── icon_emoji_idlong
└── emoticonsVector < string >

Example

EmojiGroup(
    title="text",
    icon_emoji_id=0,
    emoticons=["text"],
)