messages.EmojiGroups
- class pyrogram.raw.base.messages.EmojiGroups
Represents a list of emoji categories.
- Constructors:
This base type has 2 constructors available.
Represents a list of emoji categories.
The list of emoji categories hasn't changed.
- Functions:
This object can be returned by 4 functions.
Represents a list of emoji categories.
Represents a list of emoji categories, to be used when selecting custom emojis to set as custom emoji status.
Represents a list of emoji categories, to be used when selecting custom emojis to set as profile picture.
Represents a list of emoji categories, to be used when choosing a sticker.
TL Schema
messages.emojiGroups#881fb94b
hash:int
groups:Vector<EmojiGroup>
= messages.EmojiGroups
Parameter Tree
EmojiGroups
├── hash →
int└── groups →
Vector < EmojiGroup >├──
EmojiGroup│ ├── title →
string│ ├── icon_emoji_id →
long│ └── emoticons →
Vector < string >│ ├── title →
string│ ├── icon_emoji_id →
long│ └── emoticons →
Vector < string >├── title →
string└── icon_emoji_id →
longExample
EmojiGroups(
hash=0,
groups=[
EmojiGroup(
title="text",
icon_emoji_id=0,
emoticons=["text"]
)
],
)