Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 842 Bytes

RenderMode.md

File metadata and controls

29 lines (20 loc) · 842 Bytes

RenderMode

Render mode configuration keys.

Properties

Name Type Description Notes

Example

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)

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