Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.46 KB

File metadata and controls

38 lines (29 loc) · 1.46 KB

Document

Properties

Name Type Description Notes
uid str Web of Science Unique Identifier
title str Document title [optional]
types List[str] Normalized Document Types [optional]
source_types List[str] Source Document Types [optional]
source DocumentSource [optional]
names DocumentNames [optional]
links DocumentLinks [optional]
citations List[DocumentCitationsInner] Times Cited [optional]
identifiers DocumentIdentifiers [optional]
keywords DocumentKeywords [optional]

Example

from clarivate.wos_starter.client.models.document import Document

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

# convert the object into a dict
document_dict = document_instance.to_dict()
# create an instance of Document from a dict
document_form_dict = document.from_dict(document_dict)

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