Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.05 KB

File metadata and controls

32 lines (23 loc) · 1.05 KB

VMUsageResponse

Properties

Name Type Description Notes
message str [optional]
org_id int [optional]
status bool [optional]
virtual_machines List[VirtualMachineUsage] [optional]

Example

from hyperstack.models.vm_usage_response import VMUsageResponse

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

# convert the object into a dict
vm_usage_response_dict = vm_usage_response_instance.to_dict()
# create an instance of VMUsageResponse from a dict
vm_usage_response_from_dict = VMUsageResponse.from_dict(vm_usage_response_dict)

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