Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 855 Bytes

File metadata and controls

30 lines (21 loc) · 855 Bytes

Deviation

Properties

Name Type Description Notes
ppm float [optional]
absolute float [optional]

Example

from PySirius.models.deviation import Deviation

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

# convert the object into a dict
deviation_dict = deviation_instance.to_dict()
# create an instance of Deviation from a dict
deviation_from_dict = Deviation.from_dict(deviation_dict)

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