Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 961 Bytes

File metadata and controls

30 lines (21 loc) · 961 Bytes

JournalsList

Properties

Name Type Description Notes
metadata Metadata [optional]
hits List[Journal] [optional]

Example

from clarivate.wos_starter.client.models.journals_list import JournalsList

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

# convert the object into a dict
journals_list_dict = journals_list_instance.to_dict()
# create an instance of JournalsList from a dict
journals_list_form_dict = journals_list.from_dict(journals_list_dict)

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