Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.01 KB

File metadata and controls

31 lines (22 loc) · 1.01 KB

AuthorName

Properties

Name Type Description Notes
display_name str Web of Science display name [optional]
wos_standard str Web of Science standard name [optional]
researcher_id str Web 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]