| Name | Type | Description | Notes |
|---|---|---|---|
| available | str | [optional] | |
| configurations | NewConfigurationsResponse | [optional] | |
| model | str | [optional] | |
| planned_100_days | str | [optional] | |
| planned_30_days | str | [optional] | |
| planned_7_days | str | [optional] |
from hyperstack.models.new_model_response import NewModelResponse
# TODO update the JSON string below
json = "{}"
# create an instance of NewModelResponse from a JSON string
new_model_response_instance = NewModelResponse.from_json(json)
# print the JSON string representation of the object
print(NewModelResponse.to_json())
# convert the object into a dict
new_model_response_dict = new_model_response_instance.to_dict()
# create an instance of NewModelResponse from a dict
new_model_response_from_dict = NewModelResponse.from_dict(new_model_response_dict)