Render mode configuration keys.
Name | Type | Description | Notes |
---|
from waylay.services.queries.models.render_mode import RenderMode
# TODO update the JSON string below
json = "{}"
# create an instance of RenderMode from a JSON string
render_mode_instance = RenderMode.from_json(json)
# print the JSON string representation of the object
print RenderMode.to_json()
# convert the object into a dict
render_mode_dict = render_mode_instance.to_dict()
# create an instance of RenderMode from a dict
render_mode_form_dict = render_mode.from_dict(render_mode_dict)