| Name | Type | Description | Notes |
|---|---|---|---|
| id | int | [optional] | |
| vnc_url | str | [optional] |
from hyperstack.models.vncurl_fields import VNCURLFields
# TODO update the JSON string below
json = "{}"
# create an instance of VNCURLFields from a JSON string
vncurl_fields_instance = VNCURLFields.from_json(json)
# print the JSON string representation of the object
print(VNCURLFields.to_json())
# convert the object into a dict
vncurl_fields_dict = vncurl_fields_instance.to_dict()
# create an instance of VNCURLFields from a dict
vncurl_fields_from_dict = VNCURLFields.from_dict(vncurl_fields_dict)