Layer 227
PaidReactionPrivacy
Abstract type representing one of 3 possible constructors.
Type
Available Constructors
In Gogram, this type is represented as tg.PaidReactionPrivacy interface.
Use any of the following constructors:
PaidReactionPrivacyAnonymous
Send paid reactions anonymously.
PaidReactionPrivacyDefault
Uses the default reaction privacy, set using messages. toggle Paid Reaction Privacy.
PaidReactionPrivacyPeer
Send paid reactions as the specified peer, fetched using channels. get Send As with the for_paid_reacti
Gogram Example
// PaidReactionPrivacy is an interface type // You can use any of the following constructors: var _ tg.PaidReactionPrivacy = &tg.PaidReactionPrivacyAnonymous{} var _ tg.PaidReactionPrivacy = &tg.PaidReactionPrivacyDefault{} var _ tg.PaidReactionPrivacy = &tg.PaidReactionPrivacyPeer{}