Json Quote
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
JsonQuote
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
Properties
attachments
Link copied to clipboard
author
Link copied to clipboard
mentions
Link copied to clipboard