Name | Type | Description | Notes |
---|---|---|---|
method | InterpolationMethod | ||
value | int | Optional parameter value for the interpolation method (see method description). | [optional] |
order | int | Optional order parameter for the interpolation method (see method description). | [optional] |
from waylay.services.queries.models.interpolation import Interpolation
# TODO update the JSON string below
json = "{}"
# create an instance of Interpolation from a JSON string
interpolation_instance = Interpolation.from_json(json)
# print the JSON string representation of the object
print Interpolation.to_json()
# convert the object into a dict
interpolation_dict = interpolation_instance.to_dict()
# create an instance of Interpolation from a dict
interpolation_form_dict = interpolation.from_dict(interpolation_dict)