Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.34 KB

File metadata and controls

31 lines (22 loc) · 1.34 KB

ResourceLevelBillingHistoryResponseMetrics

Properties

Name Type Description Notes
incurred_bill float [optional]
price_per_hour float [optional]
usage_time float [optional]

Example

from hyperstack.models.resource_level_billing_history_response_metrics import ResourceLevelBillingHistoryResponseMetrics

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

# convert the object into a dict
resource_level_billing_history_response_metrics_dict = resource_level_billing_history_response_metrics_instance.to_dict()
# create an instance of ResourceLevelBillingHistoryResponseMetrics from a dict
resource_level_billing_history_response_metrics_from_dict = ResourceLevelBillingHistoryResponseMetrics.from_dict(resource_level_billing_history_response_metrics_dict)

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