interface RawEmbed {
    author?: RawEmbedAuthor;
    color?: number;
    description?: string;
    fields?: EmbedField[];
    footer?: RawEmbedFooter;
    image?: RawEmbedImage;
    provider?: EmbedProvider;
    thumbnail?: RawEmbedImage;
    timestamp?: string;
    title?: string;
    type?: EmbedType;
    url?: string;
    video?: RawEmbedVideo;
}

Hierarchy (view full)

Properties

color?: number
description?: string
fields?: EmbedField[]
provider?: EmbedProvider
thumbnail?: RawEmbedImage
timestamp?: string
title?: string
type?: EmbedType
url?: string