Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 959 Bytes

File metadata and controls

32 lines (23 loc) · 959 Bytes

LossEdge

Properties

Name Type Description Notes
source_fragment_idx int [optional]
target_fragment_idx int [optional]
molecular_formula str [optional]
score float [optional]

Example

from PySirius.models.loss_edge import LossEdge

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

# convert the object into a dict
loss_edge_dict = loss_edge_instance.to_dict()
# create an instance of LossEdge from a dict
loss_edge_from_dict = LossEdge.from_dict(loss_edge_dict)

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