Type Alias OriginalSyncRtcDeclineEvent

Source
pub type OriginalSyncRtcDeclineEvent = OriginalSyncMessageLikeEvent<RtcDeclineEventContent>;
Available on crate feature events only.
Expand description

An org.matrix.msc4310.rtc.decline event from a sync_events response.

Aliased Type§

pub struct OriginalSyncRtcDeclineEvent {
    pub content: RtcDeclineEventContent,
    pub event_id: OwnedEventId,
    pub sender: OwnedUserId,
    pub origin_server_ts: MilliSecondsSinceUnixEpoch,
    pub unsigned: MessageLikeUnsigned<RtcDeclineEventContent>,
}

Fields§

§content: RtcDeclineEventContent

Data specific to the event type.

§event_id: OwnedEventId

The globally unique identifier for the event.

§sender: OwnedUserId

The fully-qualified ID of the user who sent this event.

§origin_server_ts: MilliSecondsSinceUnixEpoch

Timestamp on the originating homeserver when this event was sent.

§unsigned: MessageLikeUnsigned<RtcDeclineEventContent>

Additional key-value pairs not signed by the homeserver.