WebSocketChatMessage

@Serializable
data class WebSocketChatMessage(val message: String? = null, val userId: String, val displayName: String, val type: Int, val link: String? = null, val time: Long? = null, val name: String? = null, val size: Long? = null) : BasePayloadModel

Constructors

Link copied to clipboard
constructor(message: String? = null, userId: String, displayName: String, type: Int, link: String? = null, time: Long? = null, name: String? = null, size: Long? = null)

Properties

Link copied to clipboard
Link copied to clipboard
val link: String? = null
Link copied to clipboard
val message: String? = null
Link copied to clipboard
val name: String? = null
Link copied to clipboard
val size: Long? = null
Link copied to clipboard
val time: Long? = null
Link copied to clipboard
val type: Int
Link copied to clipboard