Interface APIEmbedField

Table-like cells to add to the embed (max items 25)

interface APIEmbedField {
    inline?: boolean;
    name: string;
    value: string;
}

Properties

Properties

inline?: boolean

If the field should wrap or not (default false)

name: string

Header of the table-like cell (max length 256)

value: string

Subtext of the table-like cell (max length 1024)