AttachmentEventData

@Serializable
data class AttachmentEventData(val attachments: List<AttachmentEventItem>, val chatMessageId: String)

Data model for attachment events received via socket. This represents the structure when the server sends attachment updates.

Constructors

Link copied to clipboard
constructor(attachments: List<AttachmentEventItem>, chatMessageId: String)

Properties

Link copied to clipboard
@SerialName(value = "attachments")
val attachments: List<AttachmentEventItem>
Link copied to clipboard
@SerialName(value = "chatMessageId")
val chatMessageId: String