Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.04 KB

File metadata and controls

30 lines (21 loc) · 1.04 KB

JournalLinksInner

Properties

Name Type Description Notes
type str The type of URL that describes the product and page [optional]
url str URL of Web of Science Product [optional]

Example

from clarivate.wos_starter.client.models.journal_links_inner import JournalLinksInner

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

# convert the object into a dict
journal_links_inner_dict = journal_links_inner_instance.to_dict()
# create an instance of JournalLinksInner from a dict
journal_links_inner_form_dict = journal_links_inner.from_dict(journal_links_inner_dict)

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