Layer 224
SavedReactionTagObj
Info about a saved message reaction tag.
constructor
savedReactionTag#cb6ff828 flags:# reaction:Reaction title:flags.0?string count:int = SavedReactionTag;
Parameters
| Name | Type | Description |
|---|---|---|
| Reaction | Reaction | Reaction associated to the tag. |
| Title | flags.0?string | Custom tag name assigned by the user (max 12 UTF-8 chars). |
| Count | int | Number of messages tagged with this tag. |
Returns
SavedReactionTagGogram Example
// Creating SavedReactionTagObj constructor obj := &tg.SavedReactionTagObj{ Reaction: &tg.Reaction{}, Count: 42, // Optional fields: // Title: "Hello, World!", }