V2reportsArticle
August 22, 2026 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| pmid | int | [optional] | |
| title | str | [optional] | |
| var_date | str | [optional] | |
| authors | List[V2reportsAuthor] | [optional] | |
| journal | V2reportsJournal | [optional] | |
| book | V2reportsBook | [optional] | |
| proceedings | V2reportsProceedings | [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)