Command execution parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| params | List[str] | [optional] | |
| env | object | [optional] |
from plesk_client.models.cli_call_request import CliCallRequest
# TODO update the JSON string below
json = "{}"
# create an instance of CliCallRequest from a JSON string
cli_call_request_instance = CliCallRequest.from_json(json)
# print the JSON string representation of the object
print(CliCallRequest.to_json())
# convert the object into a dict
cli_call_request_dict = cli_call_request_instance.to_dict()
# create an instance of CliCallRequest from a dict
cli_call_request_from_dict = CliCallRequest.from_dict(cli_call_request_dict)