Argument String
open class ArgumentString(val suggestions: List<String> = emptyList(), val isGreedy: Boolean = false) : ArgumentComp<String>
ArgumentString is a parsable argument that represents a string.
Parameters
suggestions
A list of suggested string values for auto-completion.
is Greedy
If true, the argument will consume all remaining input as a single string. A greedy argument is always the last argument.