| Name |
Type |
Description |
Notes |
| logs |
str |
|
[optional] |
from hyperstack.models.get_instance_logs_response import GetInstanceLogsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of GetInstanceLogsResponse from a JSON string
get_instance_logs_response_instance = GetInstanceLogsResponse.from_json(json)
# print the JSON string representation of the object
print(GetInstanceLogsResponse.to_json())
# convert the object into a dict
get_instance_logs_response_dict = get_instance_logs_response_instance.to_dict()
# create an instance of GetInstanceLogsResponse from a dict
get_instance_logs_response_from_dict = GetInstanceLogsResponse.from_dict(get_instance_logs_response_dict)
[Back to Model list] [Back to API list] [Back to README]