EmojiGroupGreeting
- class pyrogram.raw.types.EmojiGroupGreeting
Represents an emoji category, that should be moved to the top of the list when choosing a sticker for a business introduction
Constructor of
EmojiGroup.- Details:
Layer:
223ID:
80D26CC7
- Parameters:
title (
str) – Category name, i.e. “Animals”, “Flags”, “Faces” and so on…icon_emoji_id (
int64-bit) – A single custom emoji used as preview for the category.emoticons (List of
str) – A list of UTF-8 emojis, matching the category.
TL Schema
emojiGroupGreeting#80d26cc7
title:string
icon_emoji_id:long
emoticons:Vector<string>
= EmojiGroup
Parameter Tree
EmojiGroupGreeting
├── title →
string├── icon_emoji_id →
long└── emoticons →
Vector < string >Example
EmojiGroupGreeting(
title="text",
icon_emoji_id=0,
emoticons=["text"],
)