Pagination
    Preparing search index...

    Interface Payload

    interface Payload {
        allowedMentions?: MessageMentionOptions;
        components?: readonly (
            | APIActionRowComponent<APIMessageActionRowComponent>
            | JSONEncodable<APIActionRowComponent<APIMessageActionRowComponent>>
            | ActionRowData<
                MessageActionRowComponentBuilder
                | MessageActionRowComponentData,
            >
        )[];
        content?: string;
        embeds?: readonly (APIEmbed | JSONEncodable<APIEmbed>)[];
        files?: readonly (
            | Attachment
            | AttachmentBuilder
            | AttachmentPayload
            | BufferResolvable
            | JSONEncodable<APIAttachment>
            | Stream
        )[];
        flags?: number;
    }

    Hierarchy

    • BaseMessageOptions
      • Payload
    Index

    Properties

    allowedMentions?: MessageMentionOptions
    components?: readonly (
        | APIActionRowComponent<APIMessageActionRowComponent>
        | JSONEncodable<APIActionRowComponent<APIMessageActionRowComponent>>
        | ActionRowData<
            MessageActionRowComponentBuilder
            | MessageActionRowComponentData,
        >
    )[]
    content?: string
    embeds?: readonly (APIEmbed | JSONEncodable<APIEmbed>)[]
    files?: readonly (
        | Attachment
        | AttachmentBuilder
        | AttachmentPayload
        | BufferResolvable
        | JSONEncodable<APIAttachment>
        | Stream
    )[]
    flags?: number