Skip to content

XrefSetCreateRequest

Create XrefSet request body

Properties

Name Type Description Notes
xref_set_type str Type of data stored in XrefSet
data_link str Mapping file link
metadata object Additional user metadata [optional]

Example

from odm_api.models.xref_set_create_request import XrefSetCreateRequest

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

# convert the object into a dict
xref_set_create_request_dict = xref_set_create_request_instance.to_dict()
# create an instance of XrefSetCreateRequest from a dict
xref_set_create_request_from_dict = XrefSetCreateRequest.from_dict(xref_set_create_request_dict)
[Back to Model list] [Back to API list] [Back to README]