Skip to main content

MessageRelation

Type Alias MessageRelation 

Source
type MessageRelation = Relation<RoomMessageEventContentWithoutRelation>;
Expand description

Room event relation carried by an admin response.

Aliased Type§

enum MessageRelation {
    Reply(Reply),
    Replacement(Replacement<RoomMessageEventContentWithoutRelation>),
    Thread(Thread),
    // some variants omitted
}

Variants§

§

Reply(Reply)

An m.in_reply_to relation indicating that the event is a reply to another event.

§

Replacement(Replacement<RoomMessageEventContentWithoutRelation>)

An event that replaces another event.

§

Thread(Thread)

An event that belongs to a thread.