AuthorName

January 4, 2024 ยท View on GitHub

Properties

NameTypeDescriptionNotes
display_namestrWeb of Science display name[optional]
wos_standardstrWeb of Science standard name[optional]
researcher_idstrWeb of Science ResearcherID[optional]

Example

from clarivate.wos_starter.client.models.author_name import AuthorName

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

# convert the object into a dict
author_name_dict = author_name_instance.to_dict()
# create an instance of AuthorName from a dict
author_name_form_dict = author_name.from_dict(author_name_dict)

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