pub type OriginalSyncFileEvent = OriginalSyncMessageLikeEvent<FileEventContent>;Available on crate feature 
events only.Expand description
An org.matrix.msc1767.file event from a sync_events response.
Aliased Type§
pub struct OriginalSyncFileEvent {
    pub content: FileEventContent,
    pub event_id: OwnedEventId,
    pub sender: OwnedUserId,
    pub origin_server_ts: MilliSecondsSinceUnixEpoch,
    pub unsigned: MessageLikeUnsigned<FileEventContent>,
}Fields§
§content: FileEventContentData 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<FileEventContent>Additional key-value pairs not signed by the homeserver.