| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | [optional] | |
| name | str | [optional] | |
| provider | str | [optional] | |
| description | str | [optional] | |
| context_window | int | [optional] | |
| max_output_tokens | int | [optional] | |
| capabilities | GetAIModel200ResponseCapabilities | [optional] | |
| pricing | GetAIModel200ResponsePricing | [optional] | |
| release_date | date | [optional] | |
| deprecated | bool | [optional] | |
| available | bool | [optional] |
from quantcdn.models.get_ai_model200_response import GetAIModel200Response
# TODO update the JSON string below
json = "{}"
# create an instance of GetAIModel200Response from a JSON string
get_ai_model200_response_instance = GetAIModel200Response.from_json(json)
# print the JSON string representation of the object
print(GetAIModel200Response.to_json())
# convert the object into a dict
get_ai_model200_response_dict = get_ai_model200_response_instance.to_dict()
# create an instance of GetAIModel200Response from a dict
get_ai_model200_response_from_dict = GetAIModel200Response.from_dict(get_ai_model200_response_dict)