Publication¶
Publication details of a journal or venue.
Properties¶
| Name | Type | Description | Notes |
|---|---|---|---|
| identifiers | Identifiers1 | [optional] | |
| name | str | Name of the publication. | |
| alternate_names | AlternateNames | [optional] | |
| type | Type1 | [optional] | |
| pages | Pages | [optional] | |
| issue | Issue | [optional] | |
| volume | Volume | [optional] | |
| url | Url | [optional] |
Example¶
from deepsearch.cps.apis.public_v2.models.publication import Publication
# TODO update the JSON string below
json = "{}"
# create an instance of Publication from a JSON string
publication_instance = Publication.from_json(json)
# print the JSON string representation of the object
print(Publication.to_json())
# convert the object into a dict
publication_dict = publication_instance.to_dict()
# create an instance of Publication from a dict
publication_form_dict = publication.from_dict(publication_dict)