Multiple Arg
Parameters
type
The Argument that you expect to be used to create the list.
Constructors
Functions
Link copied to clipboard
open suspend override fun generateExamples(context: DiscordContext): List<String>
Content copied to clipboard
A function called whenever an example of this type is needed.
Link copied to clipboard
Utility function to check that this Argument is an OptionalArg.
Link copied to clipboard
open fun optional(default: List<Output>): OptionalArg<List<Input>, List<Output>, List<Output>>
Content copied to clipboard
Make this argument optional and fall back to the default value if the conversion fails.
open fun optional(default: suspend (DiscordContext) -> List<Output>): OptionalArg<List<Input>, List<Output>, List<Output>>
Content copied to clipboard
Make this argument optional and fall back to the default value if the conversion fails. Exposes a CommandEvent.
Link copied to clipboard
open fun optionalNullable(default: List<Output>? = null): OptionalArg<List<Input>, List<Output>, List<Output>?>
Content copied to clipboard
Make this argument optional and fall back to the default value if the conversion fails.
open fun optionalNullable(default: suspend (DiscordContext) -> List<Output>?): OptionalArg<List<Input>, List<Output>, List<Output>?>
Content copied to clipboard
Make this argument optional and fall back to the default value if the conversion fails. Exposes a CommandEvent.