GeneralCommand

@Serializable
data class GeneralCommand(val name: GeneralCommandType, val controllingUserId: UUID, val arguments: Map<String, String?>)

Constructors

Link copied to clipboard
constructor(name: GeneralCommandType, controllingUserId: UUID, arguments: Map<String, String?>)

Properties

Link copied to clipboard
@SerialName(value = "Arguments")
val arguments: Map<String, String?>
Link copied to clipboard
@SerialName(value = "ControllingUserId")
val controllingUserId: UUID
Link copied to clipboard
@SerialName(value = "Name")
val name: GeneralCommandType

This exists simply to identify a set of known commands.