Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 927 Bytes

InterpolationMethod.md

File metadata and controls

28 lines (19 loc) · 927 Bytes

InterpolationMethod

Properties

Name Type Description Notes

Example

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]