mqscript_dim
Define variables or arrays for mobile automation scripts to store and manage data during device control operations.
Instructions
Define variables or arrays
Input Schema
Name | Required | Description | Default |
---|---|---|---|
variables | Yes | Variable names separated by commas (e.g., "a, b(), c") |
Input Schema (JSON Schema)
{
"properties": {
"variables": {
"description": "Variable names separated by commas (e.g., \"a, b(), c\")",
"type": "string"
}
},
"required": [
"variables"
],
"type": "object"
}