Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1 KB

File metadata and controls

30 lines (21 loc) · 1 KB

GetAIModel404Response

Properties

Name Type Description Notes
message str [optional]
code str [optional]

Example

from quantcdn.models.get_ai_model404_response import GetAIModel404Response

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

# convert the object into a dict
get_ai_model404_response_dict = get_ai_model404_response_instance.to_dict()
# create an instance of GetAIModel404Response from a dict
get_ai_model404_response_from_dict = GetAIModel404Response.from_dict(get_ai_model404_response_dict)

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