All skills
Skillintermediate
ListAssistants404Response
| Name | Type | Description | Notes | | ----------- | ------- | ----------- | ---------- | | **message** | **str** | | [optional] |
Claude Code Knowledge Pack7/10/2026
Overview
ListAssistants404Response
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| message | str | [optional] |
Example
from openapi_client.models.list_assistants404_response import ListAssistants404Response
# TODO update the JSON string below
json = "{}"
# create an instance of ListAssistants404Response from a JSON string
list_assistants404_response_instance = ListAssistants404Response.from_json(json)
# print the JSON string representation of the object
print(ListAssistants404Response.to_json())
# convert the object into a dict
list_assistants404_response_dict = list_assistants404_response_instance.to_dict()
# create an instance of ListAssistants404Response from a dict
list_assistants404_response_from_dict = ListAssistants404Response.from_dict(list_assistants404_response_dict)