Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.35 KB

File metadata and controls

38 lines (29 loc) · 1.35 KB

Billingmetricesfields

Properties

Name Type Description Notes
resource_id int [optional]
resource_type str [optional]
name str [optional]
organization_id int [optional]
bill_per_minute float [optional]
create_time datetime [optional]
terminate_time datetime [optional]
total_up_time float [optional]
total_bill float [optional]
active bool [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_form_dict = billingmetricesfields.from_dict(billingmetricesfields_dict)

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