Layer 228
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.

Gogram Example

// Creating SavedReactionTagObj constructor
obj := &tg.SavedReactionTagObj{
    Reaction: &tg.ReactionCustomEmoji{},
    Title: "Example",
    Count: 20,
}