Represents descriptive data of a ChoiceDescriptor.
| name | data type | description | 
|---|---|---|
| command | string | Choice command. | 
| description | string | Choice description. | 
| defaultvalues | string | String form of the represented choice with custom parameters. | 
| parameters | array of LinenoteChoiceParameterDto | Parameters for the represented choice. Not used when the represented choice is not parameterized. | 
Example
{
  "command" : "...",
  "description" : "...",
  "defaultvalues" : "...",
  "parameters" : [ {
    "name" : "...",
    "description" : "...",
    "value" : "...",
    "type" : "INTEGER",
    "enumeration" : [ {
      "value" : "...",
      "description" : "..."
    }, {
      "value" : "...",
      "description" : "..."
    } ]
  }, {
    "name" : "...",
    "description" : "...",
    "value" : "...",
    "type" : "BOOLEAN",
    "enumeration" : [ {
      "value" : "...",
      "description" : "..."
    }, {
      "value" : "...",
      "description" : "..."
    } ]
  } ]
}