Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.25 KB

File metadata and controls

31 lines (22 loc) · 1.25 KB

ResourceLevelBillingDetailsVM

Properties

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

Example

from hyperstack.models.resource_level_billing_details_vm import ResourceLevelBillingDetailsVM

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

# convert the object into a dict
resource_level_billing_details_vm_dict = resource_level_billing_details_vm_instance.to_dict()
# create an instance of ResourceLevelBillingDetailsVM from a dict
resource_level_billing_details_vm_from_dict = ResourceLevelBillingDetailsVM.from_dict(resource_level_billing_details_vm_dict)

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