Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.03 KB

File metadata and controls

32 lines (23 loc) · 1.03 KB

CliCallResponse

Command execution result

Properties

Name Type Description Notes
code int Command return code. [optional]
stdout str Command stdout. [optional]
stderr str Command stderr. [optional]

Example

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)

[Back to Model list] [Back to API list] [Back to README]