Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 962 Bytes

File metadata and controls

30 lines (21 loc) · 962 Bytes

DocumentKeywords

Author keywords

Properties

Name Type Description Notes
author_keywords List[str] [optional]

Example

from clarivate.wos_starter.client.models.document_keywords import DocumentKeywords

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

# convert the object into a dict
document_keywords_dict = document_keywords_instance.to_dict()
# create an instance of DocumentKeywords from a dict
document_keywords_form_dict = document_keywords.from_dict(document_keywords_dict)

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