Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.28 KB

File metadata and controls

32 lines (23 loc) · 1.28 KB

ResourceLevelBillingHistory

Properties

Name Type Description Notes
billing_history List[ResourceLevelBillingHistoryResources] [optional]
org_id int [optional]
pagination PaginationData [optional]
total_count int [optional]

Example

from hyperstack.models.resource_level_billing_history import ResourceLevelBillingHistory

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

# convert the object into a dict
resource_level_billing_history_dict = resource_level_billing_history_instance.to_dict()
# create an instance of ResourceLevelBillingHistory from a dict
resource_level_billing_history_from_dict = ResourceLevelBillingHistory.from_dict(resource_level_billing_history_dict)

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