DocumentIdentifiers

January 4, 2024 ยท View on GitHub

Document and Source Identifiers

Properties

NameTypeDescriptionNotes
doistr[optional]
issnstr[optional]
eissnstr[optional]
isbnstr[optional]
eisbnstr[optional]
pmidstr[optional]

Example

from clarivate.wos_starter.client.models.document_identifiers import DocumentIdentifiers

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

# convert the object into a dict
document_identifiers_dict = document_identifiers_instance.to_dict()
# create an instance of DocumentIdentifiers from a dict
document_identifiers_form_dict = document_identifiers.from_dict(document_identifiers_dict)

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