ODTicket 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 ticket.
This class contains all data related to this ticket (parsed from the database).
These properties contain the current state of the ticket & are used by actions like claiming, pinning, closing, ...
Methods
Properties
id
class ➜ api.ODId
The id of this ticket. (discord channel id)
inherited redirects
class ➜ api.ODManagerRedirectHelper
Handle all redirects in this ODManager
Methods
constructor()
function ➜ api.ODTicket
(no description)
View Parameters (3)
id
: type ➜api.ODValidId
- Parameter Description Lorem Ipsum.option
: class ➜api.ODTicketOption
- Parameter Description Lorem Ipsum.data
: array ➜api.ODTicketData[]
- Parameter Description Lorem Ipsum.
inherited protected _change()
function ➜ void
Trigger an onChange()
event in the parent ODManager
of this class.
inherited add()
function ➜ boolean
Add data to the manager. The id will be fetched from the data class! You can optionally select to overwrite existing data!
View Parameters (2)
data
: type ➜api.ODTicketData|(api.ODTicketData[])
- Parameter Description Lorem Ipsum.overwrite
: boolean ➜boolean
- Parameter Description Lorem Ipsum.
inherited changed()
function ➜ void
(❌ SYSTEM ONLY!!) Set the callback executed when a value inside this class changes.
exists()
function ➜ boolean
Check if data that matches the ODId
exists. Returns a boolean.
View Parameters (1)
id
: type ➜keyof api.ODTicketIds
- Parameter Description Lorem Ipsum.
get()
function ➜ null|api.ODTicketData
Get data that matches the ODId
. Returns the found data.
View Parameters (1)
id
: type ➜api.ODValidId
- Parameter Description Lorem Ipsum.
inherited getAll()
function ➜ api.ODTicketData[]
Get all data inside this manager
inherited getFiltered()
function ➜ api.ODTicketData[]
Get all data that matches inside the filter function
View Parameters (1)
predicate
: function ➜(value:api.ODTicketData, index:number, array:api.ODTicketData[]) => unknown
- Parameter Description Lorem Ipsum.
inherited getIds()
function ➜ api.ODId[]
Get a list of all the ids inside this manager
inherited getLength()
function ➜ number
Get the length of the data inside this manager
inherited getRegex()
function ➜ api.ODTicketData[]
Get all data that matches the regex
View Parameters (1)
regex
: type ➜RegExp
- Parameter Description Lorem Ipsum.
inherited loopAll()
function ➜ Promise
Run an iterator over all data in this manager. This method also supports async-await behaviour!
View Parameters (1)
cb
: function ➜(data:api.ODTicketData, id:api.ODId) => api.ODPromiseVoid
- Parameter Description Lorem Ipsum.
inherited onAdd()
function ➜ void
Listen for when data is added to this manager.
View Parameters (1)
callback
: type ➜api.ODManagerAddCallback
- Parameter Description Lorem Ipsum.
inherited onChange()
function ➜ void
Listen for when data is changed in this manager.
View Parameters (1)
callback
: type ➜api.ODManagerCallback
- Parameter Description Lorem Ipsum.
inherited onRemove()
function ➜ void
Listen for when data is removed from this manager.
View Parameters (1)
callback
: type ➜api.ODManagerCallback
- Parameter Description Lorem Ipsum.
remove()
function ➜ null|api.ODTicketData
Remove data that matches the ODId
. Returns the removed data.
View Parameters (1)
id
: type ➜api.ODValidId
- Parameter Description Lorem Ipsum.
toJson()
function ➜ api.ODTicketJson
Convert this ticket to a JSON object for storing this ticket in the database.
View Parameters (1)
version
: class ➜api.ODVersion
- Parameter Description Lorem Ipsum.
inherited useDebug()
function ➜ void
Use the Open Ticket debugger in this manager for logs
View Parameters (2)
debug
: class ➜api.ODDebugger
- Parameter Description Lorem Ipsum.debugname
: string ➜string
- Parameter Description Lorem Ipsum.
static fromJson()
function ➜ api.ODTicket
Create a ticket from a JSON object in the database.
View Parameters (2)
json
: interface ➜api.ODTicketJson
- Parameter Description Lorem Ipsum.option
: class ➜api.ODTicketOption
- Parameter Description Lorem Ipsum.
Defaults
We're still working on this part of the documentation!
Examples
We're still working on this part of the documentation!