Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 968 Bytes

File metadata and controls

31 lines (22 loc) · 968 Bytes

CliCallRequest

Command execution parameters

Properties

Name Type Description Notes
params List[str] [optional]
env object [optional]

Example

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)

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