Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.13 KB

File metadata and controls

29 lines (20 loc) · 1.13 KB

EditlabelofanexistingVMPayload

Properties

Name Type Description Notes
labels List[str] Multiple labels can be added by separating with spaces [optional]

Example

from hyperstack.models.editlabelofanexisting_vm_payload import EditlabelofanexistingVMPayload

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

# convert the object into a dict
editlabelofanexisting_vm_payload_dict = editlabelofanexisting_vm_payload_instance.to_dict()
# create an instance of EditlabelofanexistingVMPayload from a dict
editlabelofanexisting_vm_payload_from_dict = EditlabelofanexistingVMPayload.from_dict(editlabelofanexisting_vm_payload_dict)

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