Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.02 KB

File metadata and controls

33 lines (24 loc) · 1.02 KB

DocumentLinks

Web of Science URLs

Properties

Name Type Description Notes
record str [optional]
citing_articles str [optional]
references str [optional]
related str [optional]

Example

from clarivate.wos_starter.client.models.document_links import DocumentLinks

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

# convert the object into a dict
document_links_dict = document_links_instance.to_dict()
# create an instance of DocumentLinks from a dict
document_links_form_dict = document_links.from_dict(document_links_dict)

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