Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.05 KB

File metadata and controls

29 lines (20 loc) · 1.05 KB

RequestInstanceLogsResponse

Properties

Name Type Description Notes
request_id int [optional]

Example

from hyperstack.models.request_instance_logs_response import RequestInstanceLogsResponse

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

# convert the object into a dict
request_instance_logs_response_dict = request_instance_logs_response_instance.to_dict()
# create an instance of RequestInstanceLogsResponse from a dict
request_instance_logs_response_from_dict = RequestInstanceLogsResponse.from_dict(request_instance_logs_response_dict)

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