Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.12 KB

Interpolation.md

File metadata and controls

31 lines (22 loc) · 1.12 KB

Interpolation

Properties

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]

Example

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)

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