Name | Type | Description | Notes |
---|
from waylay.services.queries.models.window_override import WindowOverride
# TODO update the JSON string below
json = "{}"
# create an instance of WindowOverride from a JSON string
window_override_instance = WindowOverride.from_json(json)
# print the JSON string representation of the object
print WindowOverride.to_json()
# convert the object into a dict
window_override_dict = window_override_instance.to_dict()
# create an instance of WindowOverride from a dict
window_override_form_dict = window_override.from_dict(window_override_dict)