mqscript_sys_setenv
Set environment variables to configure script execution parameters and system behavior for mobile automation tasks.
Instructions
Set environment variable
Input Schema
Name | Required | Description | Default |
---|---|---|---|
value | Yes | Environment variable value | |
varName | Yes | Environment variable name |
Input Schema (JSON Schema)
{
"properties": {
"value": {
"description": "Environment variable value",
"type": "string"
},
"varName": {
"description": "Environment variable name",
"type": "string"
}
},
"required": [
"varName",
"value"
],
"type": "object"
}