Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.37 KB

File metadata and controls

32 lines (23 loc) · 1.37 KB

ResourceLevelGraphBillingDetailsVM

Properties

Name Type Description Notes
billing_history List[ResourceLevelGraphBillingVMDetailsResources] [optional]
granularity int [optional]
org_id int [optional]
total_count int [optional]

Example

from hyperstack.models.resource_level_graph_billing_details_vm import ResourceLevelGraphBillingDetailsVM

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

# convert the object into a dict
resource_level_graph_billing_details_vm_dict = resource_level_graph_billing_details_vm_instance.to_dict()
# create an instance of ResourceLevelGraphBillingDetailsVM from a dict
resource_level_graph_billing_details_vm_from_dict = ResourceLevelGraphBillingDetailsVM.from_dict(resource_level_graph_billing_details_vm_dict)

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