mirror of
https://github.com/signaller-matrix/signaller.git
synced 2024-11-05 10:11:02 +00:00
8 lines
305 B
Go
8 lines
305 B
Go
|
package sendmessage
|
||
|
|
||
|
// SendMessageReply represents reply for send message command
|
||
|
// https://matrix.org/docs/spec/client_server/r0.4.0.html#put-matrix-client-r0-rooms-roomid-state-eventtype-statekey
|
||
|
type SendMessageReply struct {
|
||
|
EventID string `json:"event_id"` // A unique identifier for the event.
|
||
|
}
|