Skip to content

XrefSetSearchResultEntry

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_entry import XrefSetSearchResultEntry

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

# convert the object into a dict
xref_set_search_result_entry_dict = xref_set_search_result_entry_instance.to_dict()
# create an instance of XrefSetSearchResultEntry from a dict
xref_set_search_result_entry_from_dict = XrefSetSearchResultEntry.from_dict(xref_set_search_result_entry_dict)
[Back to Model list] [Back to API list] [Back to README]