Skip to content

XrefSetSearchResultResultInner

Properties

Name Type Description Notes
xref_set_id str [optional]
source_id str [optional]
target_ids List[str] [optional]

Example

from odm_api.models.xref_set_search_result_result_inner import XrefSetSearchResultResultInner

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

# convert the object into a dict
xref_set_search_result_result_inner_dict = xref_set_search_result_result_inner_instance.to_dict()
# create an instance of XrefSetSearchResultResultInner from a dict
xref_set_search_result_result_inner_from_dict = XrefSetSearchResultResultInner.from_dict(xref_set_search_result_result_inner_dict)
[Back to Model list] [Back to API list] [Back to README]