@hunteroi/discord-mailbox
    Preparing search index...

    Interface InteractionOptions

    interface InteractionOptions {
        createButtonOptions: Omit<
            InteractionButtonComponentData,
            "disabled"
            | "customId"
            | "type",
        >;
        forceCloseButtonOptions?: Omit<
            InteractionButtonComponentData,
            "type"
            | "disabled"
            | "customId",
        >;
        generateInteractionReplyMessage: (ticket: Ticket, guild: Guild) => string;
        replyButtonOptions: Omit<
            InteractionButtonComponentData,
            "disabled"
            | "customId"
            | "type",
        >;
    }
    Index

    Properties

    createButtonOptions: Omit<
        InteractionButtonComponentData,
        "disabled"
        | "customId"
        | "type",
    >

    The settings of the creation button.

    forceCloseButtonOptions?: Omit<
        InteractionButtonComponentData,
        "type"
        | "disabled"
        | "customId",
    >

    The settings of the close button.

    generateInteractionReplyMessage: (ticket: Ticket, guild: Guild) => string

    A function to build the reply message.

    replyButtonOptions: Omit<
        InteractionButtonComponentData,
        "disabled"
        | "customId"
        | "type",
    >

    The settings of the reply button.