Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1022 Bytes

File metadata and controls

30 lines (21 loc) · 1022 Bytes

CompoundImport

Properties

Name Type Description Notes
name str Some (optional) human-readable name [optional]
features List[FeatureImport] The features this compound consists of.

Example

from PySirius.models.compound_import import CompoundImport

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

# convert the object into a dict
compound_import_dict = compound_import_instance.to_dict()
# create an instance of CompoundImport from a dict
compound_import_from_dict = CompoundImport.from_dict(compound_import_dict)

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