interface EmbedData {
    author?: EmbedAuthorData;
    color?: number;
    description?: string;
    fields?: readonly APIEmbedField[];
    footer?: EmbedFooterData;
    image?: EmbedAssetData;
    provider?: APIEmbedProvider;
    thumbnail?: EmbedAssetData;
    timestamp?: string | number | Date;
    title?: string;
    type?: EmbedType;
    url?: string;
    video?: EmbedAssetData;
}

Properties

color?: number
description?: string
fields?: readonly APIEmbedField[]
provider?: APIEmbedProvider
thumbnail?: EmbedAssetData
timestamp?: string | number | Date
title?: string
type?: EmbedType
url?: string