Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.06 KB

File metadata and controls

32 lines (23 loc) · 1.06 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.last_day_cost_fields import LastDayCostFields

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

# convert the object into a dict
last_day_cost_fields_dict = last_day_cost_fields_instance.to_dict()
# create an instance of LastDayCostFields from a dict
last_day_cost_fields_from_dict = LastDayCostFields.from_dict(last_day_cost_fields_dict)

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