Skip to content

SourceTypePair

Properties

Name Type Description Notes
first_type str Type of the object (e.g. study) [optional] [readonly]
second_type str Type of the object (e.g. study) [optional] [readonly]

Example

from odm_api.models.source_type_pair import SourceTypePair

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

# convert the object into a dict
source_type_pair_dict = source_type_pair_instance.to_dict()
# create an instance of SourceTypePair from a dict
source_type_pair_from_dict = SourceTypePair.from_dict(source_type_pair_dict)
[Back to Model list] [Back to API list] [Back to README]