Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.36 KB

File metadata and controls

32 lines (23 loc) · 1.36 KB

ListAIToolExecutions200Response

Properties

Name Type Description Notes
executions List[ListAIToolExecutions200ResponseExecutionsInner]
count int Number of executions returned
org_id str Organization identifier
status str Filter applied (or 'all') [optional]

Example

from quantcdn.models.list_ai_tool_executions200_response import ListAIToolExecutions200Response

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

# convert the object into a dict
list_ai_tool_executions200_response_dict = list_ai_tool_executions200_response_instance.to_dict()
# create an instance of ListAIToolExecutions200Response from a dict
list_ai_tool_executions200_response_from_dict = ListAIToolExecutions200Response.from_dict(list_ai_tool_executions200_response_dict)

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