Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 883 Bytes

File metadata and controls

31 lines (22 loc) · 883 Bytes

VNCURL

Properties

Name Type Description Notes
status bool [optional]
message str [optional]
vnc_url VNCURLFields [optional]

Example

from hyperstack.models.vncurl import VNCURL

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

# convert the object into a dict
vncurl_dict = vncurl_instance.to_dict()
# create an instance of VNCURL from a dict
vncurl_form_dict = vncurl.from_dict(vncurl_dict)

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