Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1012 Bytes

File metadata and controls

29 lines (20 loc) · 1012 Bytes

VMUsageRequestPayload

Properties

Name Type Description Notes
vm_ids List[int] List of virtual machine IDs

Example

from hyperstack.models.vm_usage_request_payload import VMUsageRequestPayload

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

# convert the object into a dict
vm_usage_request_payload_dict = vm_usage_request_payload_instance.to_dict()
# create an instance of VMUsageRequestPayload from a dict
vm_usage_request_payload_from_dict = VMUsageRequestPayload.from_dict(vm_usage_request_payload_dict)

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