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[];
}

Type declaration

  • Optional room?: boolean
  • Optional user_ids?: string[]
url: string

Generated using TypeDoc