Interface IWebhook

interface IWebhook {
    allowed_mentions?: any;
    applied_tags?: string[];
    attachments?: any[];
    avatar_url?: string;
    components?: any[];
    content?: string;
    embed?: IEmbed[];
    embeds?: any[];
    file?: string | IAttachment;
    flags?: number;
    message_reference?: any;
    payload_json?: string;
    thread_name?: string;
    tts?: boolean;
    username?: string;
}

Properties

allowed_mentions?: any
applied_tags?: string[]
attachments?: any[]
avatar_url?: string
components?: any[]
content?: string
embed?: IEmbed[]
embeds?: any[]
file?: string | IAttachment
flags?: number
message_reference?: any
payload_json?: string
thread_name?: string
tts?: boolean
username?: string

Generated using TypeDoc