Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.04 KB

File metadata and controls

32 lines (23 loc) · 1.04 KB

Lastdaycostfields

Properties

Name Type Description Notes
clusters_cost float [optional]
instances_cost float [optional]
total_cost float [optional]
volumes_cost float [optional]

Example

from hyperstack.models.lastdaycostfields import Lastdaycostfields

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

# convert the object into a dict
lastdaycostfields_dict = lastdaycostfields_instance.to_dict()
# create an instance of Lastdaycostfields from a dict
lastdaycostfields_from_dict = Lastdaycostfields.from_dict(lastdaycostfields_dict)

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