| Name | Type | Description | Notes |
|---|---|---|---|
| cpu | int | [optional] | |
| disk | int | [optional] | |
| ephemeral | int | [optional] | |
| features | object | [optional] | |
| gpu | str | [optional] | |
| gpu_count | int | [optional] | |
| id | int | [optional] | |
| labels | List[FlavorLabelFields] | [optional] | |
| name | str | [optional] | |
| ram | float | [optional] |
from hyperstack.models.instance_flavor_fields import InstanceFlavorFields
# TODO update the JSON string below
json = "{}"
# create an instance of InstanceFlavorFields from a JSON string
instance_flavor_fields_instance = InstanceFlavorFields.from_json(json)
# print the JSON string representation of the object
print(InstanceFlavorFields.to_json())
# convert the object into a dict
instance_flavor_fields_dict = instance_flavor_fields_instance.to_dict()
# create an instance of InstanceFlavorFields from a dict
instance_flavor_fields_from_dict = InstanceFlavorFields.from_dict(instance_flavor_fields_dict)