| Name |
Type |
Description |
Notes |
| instances_cost |
float |
|
[optional] |
| volumes_cost |
float |
|
[optional] |
| clusters_cost |
float |
|
[optional] |
| total_cost |
float |
|
[optional] |
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_form_dict = lastdaycostfields.from_dict(lastdaycostfields_dict)
[Back to Model list] [Back to API list] [Back to README]