V2reportsSequenceReference
June 30, 2026 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| article | V2reportsArticle | [optional] | |
| journal | V2reportsJournal | [optional] | |
| book | V2reportsBook | [optional] | |
| proceedings | V2reportsProceedings | [optional] | |
| thesis | V2reportsThesis | [optional] | |
| patent | V2reportsPatent | [optional] | |
| general | V2reportsGeneral | [optional] | |
| medline | V2reportsMedline | [optional] |
Example
from ncbi.datasets.openapi.models.v2reports_sequence_reference import V2reportsSequenceReference
# TODO update the JSON string below
json = "{}"
# create an instance of V2reportsSequenceReference from a JSON string
v2reports_sequence_reference_instance = V2reportsSequenceReference.from_json(json)
# print the JSON string representation of the object
print(V2reportsSequenceReference.to_json())
# convert the object into a dict
v2reports_sequence_reference_dict = v2reports_sequence_reference_instance.to_dict()
# create an instance of V2reportsSequenceReference from a dict
v2reports_sequence_reference_from_dict = V2reportsSequenceReference.from_dict(v2reports_sequence_reference_dict)