CommandData

data class CommandData(var command: String, var parameters: MutableList<String> = mutableListOf())

Represents a command and its associated parameters for scanner settings.

This class is used to store a command and the list of parameters that are associated with the command when interacting with a scanner.

It provides a structured way to store and access a command's details.

Constructors

Link copied to clipboard
constructor(command: String, parameters: MutableList<String> = mutableListOf())

Properties

Link copied to clipboard

The command being executed or retrieved.

Link copied to clipboard

The list of parameters associated with the command.