| Name | Type | Description | Notes |
|---|---|---|---|
| flavor | FlavorObjectFields | [optional] | |
| flavor_name | str | [optional] |
from hyperstack.models.instance_resize_payload import InstanceResizePayload
# TODO update the JSON string below
json = "{}"
# create an instance of InstanceResizePayload from a JSON string
instance_resize_payload_instance = InstanceResizePayload.from_json(json)
# print the JSON string representation of the object
print(InstanceResizePayload.to_json())
# convert the object into a dict
instance_resize_payload_dict = instance_resize_payload_instance.to_dict()
# create an instance of InstanceResizePayload from a dict
instance_resize_payload_from_dict = InstanceResizePayload.from_dict(instance_resize_payload_dict)