| Name |
Type |
Description |
Notes |
| cost_per_hour |
float |
|
[optional] |
| count |
int |
|
[optional] |
| using |
int |
|
[optional] |
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_from_dict = VolumeOverviewFields.from_dict(volume_overview_fields_dict)
[Back to Model list] [Back to API list] [Back to README]