Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 901 Bytes

File metadata and controls

29 lines (20 loc) · 901 Bytes

StatusResponse

Properties

Name Type Description Notes
status str Result of the operation

Example

from plesk_client.models.status_response import StatusResponse

# TODO update the JSON string below
json = "{}"
# create an instance of StatusResponse from a JSON string
status_response_instance = StatusResponse.from_json(json)
# print the JSON string representation of the object
print(StatusResponse.to_json())

# convert the object into a dict
status_response_dict = status_response_instance.to_dict()
# create an instance of StatusResponse from a dict
status_response_from_dict = StatusResponse.from_dict(status_response_dict)

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