Name |
Type |
Description |
Notes |
from waylay.services.queries.models.interpolation_method import InterpolationMethod
# TODO update the JSON string below
json = "{}"
# create an instance of InterpolationMethod from a JSON string
interpolation_method_instance = InterpolationMethod.from_json(json)
# print the JSON string representation of the object
print InterpolationMethod.to_json()
# convert the object into a dict
interpolation_method_dict = interpolation_method_instance.to_dict()
# create an instance of InterpolationMethod from a dict
interpolation_method_form_dict = interpolation_method.from_dict(interpolation_method_dict)
[Back to Model list] [Back to API list] [Back to README]