Layer 220
constructor
savedReactionTag#cb6ff828 flags:# reaction:Reaction title:flags.0?string count:int = SavedReactionTag;

Parameters

Name Type Description
Flags # Flags, see TL conditional fields
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 SavedReactionTag constructor
obj := &tg.SavedReactionTag{
    Reaction: &tg.Reaction{},
    Count: 0,

    // Optional fields:
    // Title: "...",
}