Interface RawEmbedOptions

interface RawEmbedOptions {
    author?: RawEmbedAuthorOptions;
    color?: number;
    description?: string;
    fields?: EmbedField[];
    footer?: RawEmbedFooterOptions;
    image?: EmbedImageOptions;
    thumbnail?: EmbedImageOptions;
    timestamp?: string;
    title?: string;
    url?: string;
}

Hierarchy (view full)

Properties

color?: number
description?: string
fields?: EmbedField[]
thumbnail?: EmbedImageOptions
timestamp?: string
title?: string
url?: string