mqscript_cstr
Convert values to strings for use in MQScript mobile automation, enabling proper data handling in device control operations.
Instructions
Convert value to string
Input Schema
Name | Required | Description | Default |
---|---|---|---|
resultVariable | No | Variable name to store result | result |
value | Yes | Value to convert to string |
Input Schema (JSON Schema)
{
"properties": {
"resultVariable": {
"default": "result",
"description": "Variable name to store result",
"type": "string"
},
"value": {
"description": "Value to convert to string",
"type": "string"
}
},
"required": [
"value"
],
"type": "object"
}