DocumentCitationsInner
January 4, 2024 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| db | str | Web of Science Citation Database (collection) Abbreviation Name | [optional] |
| count | int | Citation Count | [optional] |
Example
from clarivate.wos_starter.client.models.document_citations_inner import DocumentCitationsInner
# TODO update the JSON string below
json = "{}"
# create an instance of DocumentCitationsInner from a JSON string
document_citations_inner_instance = DocumentCitationsInner.from_json(json)
# print the JSON string representation of the object
print DocumentCitationsInner.to_json()
# convert the object into a dict
document_citations_inner_dict = document_citations_inner_instance.to_dict()
# create an instance of DocumentCitationsInner from a dict
document_citations_inner_form_dict = document_citations_inner.from_dict(document_citations_inner_dict)