Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.4 KB

File metadata and controls

39 lines (30 loc) · 1.4 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.billingmetricesfields import Billingmetricesfields

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

# convert the object into a dict
billingmetricesfields_dict = billingmetricesfields_instance.to_dict()
# create an instance of Billingmetricesfields from a dict
billingmetricesfields_from_dict = Billingmetricesfields.from_dict(billingmetricesfields_dict)

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