Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 922 Bytes

File metadata and controls

29 lines (20 loc) · 922 Bytes

PDBDebugModel

Properties

Name Type Description Notes
debug_entries List[SinglePDBEntryModel]

Example

from revengai.models.pdb_debug_model import PDBDebugModel

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

# convert the object into a dict
pdb_debug_model_dict = pdb_debug_model_instance.to_dict()
# create an instance of PDBDebugModel from a dict
pdb_debug_model_from_dict = PDBDebugModel.from_dict(pdb_debug_model_dict)

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