case class CommandDescription(name: String, description: String, usage: String = "", extra: Map[String, String] = Map.empty) extends Product with Serializable
Represents non essential information about a command intended to be displayed to an end user.
- name
The display name of a command.
- description
The description of what a command does.
- usage
How to use the command. Does not include the name or prefix.
- extra
Extra stuff about the command that you yourself decide on.
- Source
- command.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- CommandDescription
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new CommandDescription(name: String, description: String, usage: String = "", extra: Map[String, String] = Map.empty)
- name
The display name of a command.
- description
The description of what a command does.
- usage
How to use the command. Does not include the name or prefix.
- extra
Extra stuff about the command that you yourself decide on.