Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 862 Bytes

WindowOverride.md

File metadata and controls

28 lines (19 loc) · 862 Bytes

WindowOverride

Properties

Name Type Description Notes

Example

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)

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