Interface RoomMessageLocationEventContent

Content format of timeline events with type m.room.message and msgtype m.location

interface RoomMessageLocationEventContent {
    body: string;
    geo_uri: string;
    info: Pick<FileInfo, "thumbnail_file" | "thumbnail_info" | "thumbnail_url">;
    "m.mentions"?: { room?: boolean; user_ids?: string[] };
    msgtype: Location;
}

Hierarchy (View Summary)

Properties

body: string
geo_uri: string
info: Pick<FileInfo, "thumbnail_file" | "thumbnail_info" | "thumbnail_url">
"m.mentions"?: { room?: boolean; user_ids?: string[] }
msgtype: Location