Skip to main content

ODSlashCommand class

under construction

We are still working the API Reference! This page might be incomplete or doesn't contain all details!

Overview

This is an Open Ticket slash command.

When registered, you can listen for this command using the ODCommandResponder. The advantages of using this class for creating a slash command are:

  • automatic option parsing (even for channels, users, roles & mentions)!
  • automatic registration in discord.js
  • error reporting to the user when the bot fails to respond
  • plugins can extend this command
  • the bot won't re-register the command when it already exists (except when requested)!

And more!

View Source

Properties


builder interface api.ODSlashCommandBuilder

The discord.js builder for this slash command.

View Source


guildId type null|string

The id of the guild this command is for. Null when not set.

View Source


inherited id class api.ODId

The id of this data.

View Source


requiresUpdate type null|api.ODSlashCommandUpdateFunction

Function to check if the slash command requires to be updated (when it already exists).

View Source


Methods


constructor() function api.ODSlashCommand

(no description)

View Parameters (4)

View Source


inherited protected _change() function void

Trigger an onChange() event in the parent ODManager of this class.

View Source


inherited changed() function void

(❌ SYSTEM ONLY!!) Set the callback executed when a value inside this class changes.

View Parameters (1)
  • callback: type null|(() => void) - Parameter Description Lorem Ipsum.

View Source


Defaults

under construction

We're still working on this part of the documentation!

Examples

under construction

We're still working on this part of the documentation!