Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.01 KB

File metadata and controls

31 lines (22 loc) · 1.01 KB

RelatedDonor

Familial relation of this donor.

Properties

Name Type Description Notes
donor str An identifier for the related donor.
relationship_type str A descriptive term for the related donor’s relationship to this donor.

Example

from igvf_async_client.models.related_donor import RelatedDonor

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

# convert the object into a dict
related_donor_dict = related_donor_instance.to_dict()
# create an instance of RelatedDonor from a dict
related_donor_from_dict = RelatedDonor.from_dict(related_donor_dict)

[Back to Model list] [Back to API list] [Back to README]