Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.53 KB

File metadata and controls

34 lines (25 loc) · 1.53 KB

OrganizationLevelBillingHistoryResponseMetrics

Properties

Name Type Description Notes
contract_cost float [optional]
incurred_bill float [optional]
non_discounted_bill float [optional]
snapshot_cost float [optional]
vm_cost float [optional]
volume_cost float [optional]

Example

from hyperstack.models.organization_level_billing_history_response_metrics import OrganizationLevelBillingHistoryResponseMetrics

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

# convert the object into a dict
organization_level_billing_history_response_metrics_dict = organization_level_billing_history_response_metrics_instance.to_dict()
# create an instance of OrganizationLevelBillingHistoryResponseMetrics from a dict
organization_level_billing_history_response_metrics_from_dict = OrganizationLevelBillingHistoryResponseMetrics.from_dict(organization_level_billing_history_response_metrics_dict)

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