Class DiscordReactionData
Represents a discord Reaction Structure API model. Docs: https://discord.com/developers/docs/resources/channel#reaction-object-reaction-structure
Implements
Inherited Members
System.Object.Equals(System.Object)
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: Color_Chan.Discord.Core.Common.API.DataModels
Assembly: Color-Chan.Discord.Core.dll
Syntax
public class DiscordReactionData : IEquatable<DiscordReactionData>
Properties
| Improve this Doc View SourceByMe
Whether the current user reacted using this emoji.
Declaration
[JsonPropertyName("me")]
public bool ByMe { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
Count
Times this emoji has been used to react.
Declaration
[JsonPropertyName("count")]
public int Count { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
Emoji
Emoji information.
Declaration
[JsonPropertyName("emoji")]
public DiscordEmojiData Emoji { get; set; }
Property Value
Type | Description |
---|---|
DiscordEmojiData |