mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-23 23:03:10 -06:00
23 lines
479 B
Go
23 lines
479 B
Go
package api
|
|
|
|
type PerformUserReceiptUpdateRequest struct {
|
|
RoomID string `json:"room_id"`
|
|
ReceiptType string `json:"type"`
|
|
EventID string `json:"event_id"`
|
|
UserID string `json:"user_id"`
|
|
}
|
|
|
|
type PerformUserReceiptUpdateResponse struct{}
|
|
|
|
type ReceiptEvent struct {
|
|
Content map[string]struct {
|
|
Data map[string]TS `json:"m.read"`
|
|
} `json:"content"`
|
|
RoomID string `json:"room_id"`
|
|
Type string `json:"type"`
|
|
}
|
|
|
|
type TS struct {
|
|
TimeStamp int `json:"ts"`
|
|
}
|