Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.24 KB

File metadata and controls

32 lines (24 loc) · 1.24 KB

ChatWrapper

Properties

Name Type Description Notes
response ChatDto [optional]
count int The total number of items in the response [optional]
links List[GetPortalPrices200ResponseLinksInner] List of links related to the response [optional]
status int HTTP status code of the response [optional]
status_code int HTTP status code of the response (duplicate of status) [optional]

Example

from docspace_api_sdk.models.chat_wrapper import ChatWrapper

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

# convert the object into a dict
chat_wrapper_dict = chat_wrapper_instance.to_dict()
# create an instance of ChatWrapper from a dict
chat_wrapper_from_dict = ChatWrapper.from_dict(chat_wrapper_dict)

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