Command execution result
| Name | Type | Description | Notes |
|---|---|---|---|
| code | int | Command return code. | [optional] |
| stdout | str | Command stdout. | [optional] |
| stderr | str | Command stderr. | [optional] |
from plesk_client.models.cli_call_response import CliCallResponse
# TODO update the JSON string below
json = "{}"
# create an instance of CliCallResponse from a JSON string
cli_call_response_instance = CliCallResponse.from_json(json)
# print the JSON string representation of the object
print(CliCallResponse.to_json())
# convert the object into a dict
cli_call_response_dict = cli_call_response_instance.to_dict()
# create an instance of CliCallResponse from a dict
cli_call_response_from_dict = CliCallResponse.from_dict(cli_call_response_dict)