A response with a description and results references used
| Name | Type | Description | Notes |
|---|---|---|---|
| meta | Meta | [optional] | |
| data | Search200ResponseData | [optional] |
from openapi_client.models.search200_response import Search200Response
# TODO update the JSON string below
json = "{}"
# create an instance of Search200Response from a JSON string
search200_response_instance = Search200Response.from_json(json)
# print the JSON string representation of the object
print(Search200Response.to_json())
# convert the object into a dict
search200_response_dict = search200_response_instance.to_dict()
# create an instance of Search200Response from a dict
search200_response_from_dict = Search200Response.from_dict(search200_response_dict)