ReactionResponse

data class ReactionResponse(    @Json(name = "type") val type: String,     @Json(name = "user") val user: UserResponse,     @Json(name = "emoji_code") val emojiCode: String? = null,     @Json(name = "custom") val custom: Map<String, Any?>? = null)

Constructors

Link copied to clipboard
constructor(    @Json(name = "type") type: String,     @Json(name = "user") user: UserResponse,     @Json(name = "emoji_code") emojiCode: String? = null,     @Json(name = "custom") custom: Map<String, Any?>? = null)

Properties

Link copied to clipboard
val custom: Map<String, Any?>? = null
Link copied to clipboard
val emojiCode: String? = null
Link copied to clipboard
Link copied to clipboard