AnnouncementReaction

@Serializable
data class AnnouncementReaction(val name: String, val count: Long, val me: Boolean, val url: String? = null, val staticUrl: String? = null)

Represents an emoji reaction to an Announcement.

Constructors

Link copied to clipboard
constructor(name: String, count: Long, me: Boolean, url: String? = null, staticUrl: String? = null)

Properties

Link copied to clipboard
val count: Long

The total number of users who have added this reaction.

Link copied to clipboard
val me: Boolean

Whether the authorized user has added this reaction to the announcement.

Link copied to clipboard

The emoji used for the reaction.

Link copied to clipboard
val staticUrl: String? = null

URL to a non-animated version of the custom emoji.

Link copied to clipboard
val url: String? = null

URL to the custom emoji.