Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 874 Bytes

File metadata and controls

30 lines (21 loc) · 874 Bytes

SimplePeak

Properties

Name Type Description Notes
mz float [optional]
intensity float [optional]

Example

from PySirius.models.simple_peak import SimplePeak

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

# convert the object into a dict
simple_peak_dict = simple_peak_instance.to_dict()
# create an instance of SimplePeak from a dict
simple_peak_from_dict = SimplePeak.from_dict(simple_peak_dict)

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