Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.02 KB

File metadata and controls

29 lines (20 loc) · 1.02 KB

QueryResponseItemWrapper

Properties

Name Type Description Notes
content object [optional]

Example

from cm_python_openapi_sdk.models.query_response_item_wrapper import QueryResponseItemWrapper

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

# convert the object into a dict
query_response_item_wrapper_dict = query_response_item_wrapper_instance.to_dict()
# create an instance of QueryResponseItemWrapper from a dict
query_response_item_wrapper_from_dict = QueryResponseItemWrapper.from_dict(query_response_item_wrapper_dict)

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