Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.15 KB

File metadata and controls

32 lines (23 loc) · 1.15 KB

CServeRecipeResponse

Properties

Name Type Description Notes
model str
fastest CServeRecipePerf
cheapest CServeRecipePerf
best_value CServeRecipePerf

Example

from platform_api_python_client.models.c_serve_recipe_response import CServeRecipeResponse

# TODO update the JSON string below
json = "{}"
# create an instance of CServeRecipeResponse from a JSON string
c_serve_recipe_response_instance = CServeRecipeResponse.from_json(json)
# print the JSON string representation of the object
print(CServeRecipeResponse.to_json())

# convert the object into a dict
c_serve_recipe_response_dict = c_serve_recipe_response_instance.to_dict()
# create an instance of CServeRecipeResponse from a dict
c_serve_recipe_response_from_dict = CServeRecipeResponse.from_dict(c_serve_recipe_response_dict)

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