| 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] |
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)