signaller/internal/models/sendmessage/request.go
2019-08-03 19:19:18 +05:00

20 lines
548 B
Go

package sendmessage
import (
common "github.com/signaller-matrix/signaller/internal/models/common"
)
type SendMessageRequest struct {
Body string `json:"body"` // Required. The textual representation of this message.
MessageType common.MessageType `json:"msgtype"` // Required. The type of message, e.g. m.image, m.text
RelatesTo MRelatesTo `json:"m.relates_to,omitempty"`
}
type MRelatesTo struct {
InReplyTo MInReplyTo `json:"m.in_reply_to"`
}
type MInReplyTo struct {
EventID string `json:"event_id"`
}