| Name |
Type |
Description |
Notes |
| message |
str |
|
[optional] |
| status |
bool |
|
[optional] |
| url |
str |
|
[optional] |
from hyperstack.models.request_console import RequestConsole
# TODO update the JSON string below
json = "{}"
# create an instance of RequestConsole from a JSON string
request_console_instance = RequestConsole.from_json(json)
# print the JSON string representation of the object
print(RequestConsole.to_json())
# convert the object into a dict
request_console_dict = request_console_instance.to_dict()
# create an instance of RequestConsole from a dict
request_console_from_dict = RequestConsole.from_dict(request_console_dict)
[Back to Model list] [Back to API list] [Back to README]