Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.33 KB

File metadata and controls

31 lines (22 loc) · 1.33 KB

ResourceBillingEventsHistoryResponse

Properties

Name Type Description Notes
billing_events_history List[ResourceBillingEventsHistoryMetrics] [optional]
message str [optional]
status bool [optional]

Example

from hyperstack.models.resource_billing_events_history_response import ResourceBillingEventsHistoryResponse

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

# convert the object into a dict
resource_billing_events_history_response_dict = resource_billing_events_history_response_instance.to_dict()
# create an instance of ResourceBillingEventsHistoryResponse from a dict
resource_billing_events_history_response_from_dict = ResourceBillingEventsHistoryResponse.from_dict(resource_billing_events_history_response_dict)

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