Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 930 Bytes

PatchVncRequest.md

File metadata and controls

29 lines (20 loc) · 930 Bytes

PatchVncRequest

Properties

Name Type Description Notes
vnc_password str Password for instance VNC

Example

from pfruck_contabo.models.patch_vnc_request import PatchVncRequest

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

# convert the object into a dict
patch_vnc_request_dict = patch_vnc_request_instance.to_dict()
# create an instance of PatchVncRequest from a dict
patch_vnc_request_from_dict = PatchVncRequest.from_dict(patch_vnc_request_dict)

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