Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.03 KB

File metadata and controls

31 lines (22 loc) · 1.03 KB

VolumeOverviewFields

Properties

Name Type Description Notes
count int [optional]
using int [optional]
cost_per_hour float [optional]

Example

from hyperstack.models.volume_overview_fields import VolumeOverviewFields

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

# convert the object into a dict
volume_overview_fields_dict = volume_overview_fields_instance.to_dict()
# create an instance of VolumeOverviewFields from a dict
volume_overview_fields_form_dict = volume_overview_fields.from_dict(volume_overview_fields_dict)

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