Skip to content

Latest commit

 

History

History
40 lines (32 loc) · 1.36 KB

Publication.md

File metadata and controls

40 lines (32 loc) · 1.36 KB

Publication

Properties

Name Type Description Notes
pub_key int [optional]
title str [optional]
authors List[str] [optional]
year int [optional]
citation str [optional]
pubmedid str [optional]
doi str [optional]
endnoteid int [optional]
url str [optional]
wittid int [optional]
biomodel_refs List[BiomodelRef] [optional]
mathmodel_refs List[MathmodelRef] [optional]
var_date date [optional]

Example

from vcell_api_client.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)

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