Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 957 Bytes

File metadata and controls

30 lines (21 loc) · 957 Bytes

BillingHistory

Properties

Name Type Description Notes
attributes Attributes [optional]
metrics object [optional]

Example

from hyperstack.models.billing_history import BillingHistory

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

# convert the object into a dict
billing_history_dict = billing_history_instance.to_dict()
# create an instance of BillingHistory from a dict
billing_history_from_dict = BillingHistory.from_dict(billing_history_dict)

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