pub type OriginalSyncCallNotifyEvent = OriginalSyncMessageLikeEvent<CallNotifyEventContent>;Available on crate feature 
events only.Expand description
An m.call.notify event from a sync_events response.
Aliased Type§
pub struct OriginalSyncCallNotifyEvent {
    pub content: CallNotifyEventContent,
    pub event_id: OwnedEventId,
    pub sender: OwnedUserId,
    pub origin_server_ts: MilliSecondsSinceUnixEpoch,
    pub unsigned: MessageLikeUnsigned<CallNotifyEventContent>,
}Fields§
§content: CallNotifyEventContentData specific to the event type.
event_id: OwnedEventIdThe globally unique identifier for the event.
sender: OwnedUserIdThe fully-qualified ID of the user who sent this event.
origin_server_ts: MilliSecondsSinceUnixEpochTimestamp on the originating homeserver when this event was sent.
unsigned: MessageLikeUnsigned<CallNotifyEventContent>Additional key-value pairs not signed by the homeserver.