mqscript_cbool
Convert string values to boolean format for use in mobile automation scripts, enabling conditional logic and decision-making in device control operations.
Instructions
Convert value to boolean
Input Schema
Name | Required | Description | Default |
---|---|---|---|
resultVariable | No | Variable name to store result | result |
value | Yes | Value to convert to boolean |
Input Schema (JSON Schema)
{
"properties": {
"resultVariable": {
"default": "result",
"description": "Variable name to store result",
"type": "string"
},
"value": {
"description": "Value to convert to boolean",
"type": "string"
}
},
"required": [
"value"
],
"type": "object"
}