data class Argument : ParameterHelp
name
- The name / metavar for this argument
help
- The arguments's description
required
- True if this argument must be specified
repeatable
- True if this argument takes an unlimited number of values
Argument(name: String, help: String, required: Boolean, repeatable: Boolean) |
val help: String
The arguments's description |
|
val name: String
The name / metavar for this argument |
|
val repeatable: Boolean
True if this argument takes an unlimited number of values |
|
val required: Boolean
True if this argument must be specified |