| Name | Type | Description | Notes |
|---|---|---|---|
| response | List[ConversationResultDto] | [optional] | |
| count | int | [optional] | |
| links | List[ActiveConnectionsWrapperLinksInner] | [optional] | |
| status | int | [optional] | |
| status_code | int | [optional] |
from docspace_api_sdk.models.conversation_result_array_wrapper import ConversationResultArrayWrapper
# TODO update the JSON string below
json = "{}"
# create an instance of ConversationResultArrayWrapper from a JSON string
conversation_result_array_wrapper_instance = ConversationResultArrayWrapper.from_json(json)
# print the JSON string representation of the object
print(ConversationResultArrayWrapper.to_json())
# convert the object into a dict
conversation_result_array_wrapper_dict = conversation_result_array_wrapper_instance.to_dict()
# create an instance of ConversationResultArrayWrapper from a dict
conversation_result_array_wrapper_from_dict = ConversationResultArrayWrapper.from_dict(conversation_result_array_wrapper_dict)