Interface StickerEventContent

Content format of timeline events with type m.sticker

interface StickerEventContent {
    body: string;
    info: ImageInfo;
    m.mentions?: {
        room?: boolean;
        user_ids?: string[];
    };
    url: string;
}

Hierarchy (view full)

Properties

body: string
info: ImageInfo
m.mentions?: {
    room?: boolean;
    user_ids?: string[];
}
url: string