Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.17 KB

File metadata and controls

34 lines (25 loc) · 1.17 KB

NewModelResponse

Properties

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]

Example

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)

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