Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.26 KB

File metadata and controls

30 lines (21 loc) · 1.26 KB

ChatWithAIAgent200ResponseResponseUsage

Properties

Name Type Description Notes
input_tokens int [optional]
output_tokens int [optional]

Example

from quantcdn.models.chat_with_ai_agent200_response_response_usage import ChatWithAIAgent200ResponseResponseUsage

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

# convert the object into a dict
chat_with_ai_agent200_response_response_usage_dict = chat_with_ai_agent200_response_response_usage_instance.to_dict()
# create an instance of ChatWithAIAgent200ResponseResponseUsage from a dict
chat_with_ai_agent200_response_response_usage_from_dict = ChatWithAIAgent200ResponseResponseUsage.from_dict(chat_with_ai_agent200_response_response_usage_dict)

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