DocumentNames

January 4, 2024 ยท View on GitHub

Properties

NameTypeDescriptionNotes
authorsList[AuthorName]Authors of document[optional]
inventorsList[OtherName][optional]
book_corpList[OtherName][optional]
book_editorsList[OtherName][optional]
booksList[OtherName][optional]
additional_authorsList[OtherName][optional]
anonymousList[OtherName][optional]
assigneesList[OtherName][optional]
corpList[OtherName][optional]
editorsList[OtherName][optional]
investigatorsList[OtherName][optional]
sponsorsList[OtherName][optional]
issuing_organizationsList[OtherName][optional]

Example

from clarivate.wos_starter.client.models.document_names import DocumentNames

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

# convert the object into a dict
document_names_dict = document_names_instance.to_dict()
# create an instance of DocumentNames from a dict
document_names_form_dict = document_names.from_dict(document_names_dict)

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