Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 998 Bytes

File metadata and controls

31 lines (22 loc) · 998 Bytes

SinglePDBEntryModel

Properties

Name Type Description Notes
guid str
age int
path str

Example

from revengai.models.single_pdb_entry_model import SinglePDBEntryModel

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

# convert the object into a dict
single_pdb_entry_model_dict = single_pdb_entry_model_instance.to_dict()
# create an instance of SinglePDBEntryModel from a dict
single_pdb_entry_model_from_dict = SinglePDBEntryModel.from_dict(single_pdb_entry_model_dict)

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