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