Skip to content

XrefSetSearchResult

Result of a search query for xrefsets

Properties

Name Type Description Notes
cursor str [optional]
result List[XrefSetSearchResultResultInner] [optional]

Example

from odm_api.models.xref_set_search_result import XrefSetSearchResult

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

# convert the object into a dict
xref_set_search_result_dict = xref_set_search_result_instance.to_dict()
# create an instance of XrefSetSearchResult from a dict
xref_set_search_result_from_dict = XrefSetSearchResult.from_dict(xref_set_search_result_dict)
[Back to Model list] [Back to API list] [Back to README]