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 full)

Properties

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