JsonQuote
data class JsonQuote(id: Long?, author: JsonAddress?, text: String?, attachments: List<JsonQuotedAttachment>, mentions: List<JsonMention>)
Content copied to clipboard
A quote is a reply to a previous message. ID is the sent time of the message being replied to
Constructors
Link copied to clipboard
fun JsonQuote(id: Long? = null, author: JsonAddress? = null, text: String? = null, attachments: List<JsonQuotedAttachment> = emptyList(), mentions: List<JsonMention> = emptyList())
Content copied to clipboard