V2reportsArticle

August 22, 2026 ยท View on GitHub

Properties

NameTypeDescriptionNotes
pmidint[optional]
titlestr[optional]
var_datestr[optional]
authorsList[V2reportsAuthor][optional]
journalV2reportsJournal[optional]
bookV2reportsBook[optional]
proceedingsV2reportsProceedings[optional]

Example

from ncbi.datasets.openapi.models.v2reports_article import V2reportsArticle

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

# convert the object into a dict
v2reports_article_dict = v2reports_article_instance.to_dict()
# create an instance of V2reportsArticle from a dict
v2reports_article_from_dict = V2reportsArticle.from_dict(v2reports_article_dict)

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