Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.41 KB

File metadata and controls

39 lines (30 loc) · 1.41 KB

BillingMetricesFields

Properties

Name Type Description Notes
active bool [optional]
bill_per_minute float [optional]
create_time datetime [optional]
exclude_billing bool [optional]
name str [optional]
organization_id int [optional]
resource_id int [optional]
resource_type str [optional]
terminate_time datetime [optional]
total_bill float [optional]
total_up_time float [optional]

Example

from hyperstack.models.billing_metrices_fields import BillingMetricesFields

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

# convert the object into a dict
billing_metrices_fields_dict = billing_metrices_fields_instance.to_dict()
# create an instance of BillingMetricesFields from a dict
billing_metrices_fields_from_dict = BillingMetricesFields.from_dict(billing_metrices_fields_dict)

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