| Name | Type | Description | Notes |
|---|---|---|---|
| ppm | float | [optional] | |
| absolute | float | [optional] |
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)