ODSlashCommand class
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!
Properties
builder
interface ➜ api.ODSlashCommandBuilder
The discord.js builder for this slash command.
guildId
type ➜ null|string
The id of the guild this command is for. Null when not set.
inherited id
class ➜ api.ODId
The id of this data.
requiresUpdate
type ➜ null|api.ODSlashCommandUpdateFunction
Function to check if the slash command requires to be updated (when it already exists).
Methods
constructor()
function ➜ api.ODSlashCommand
(no description)
View Parameters (4)
id
: type ➜api.ODValidId
- Parameter Description Lorem Ipsum.builder
: interface ➜api.ODSlashCommandBuilder
- Parameter Description Lorem Ipsum.requiresUpdate
: type ➜api.ODSlashCommandUpdateFunction
- Parameter Description Lorem Ipsum.guildId
: string ➜string
- Parameter Description Lorem Ipsum.
inherited protected _change()
function ➜ void
Trigger an onChange()
event in the parent ODManager
of this class.
inherited changed()
function ➜ void
(❌ SYSTEM ONLY!!) Set the callback executed when a value inside this class changes.
Defaults
We're still working on this part of the documentation!
Examples
We're still working on this part of the documentation!