Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1001 Bytes

ChangedEvent.md

File metadata and controls

30 lines (21 loc) · 1001 Bytes

ChangedEvent

Properties

Name Type Description Notes
type ChangedEventType [optional]
old_values object old values of all attributes that have changed [optional]

Example

from waylay.services.resources.models.changed_event import ChangedEvent

# TODO update the JSON string below
json = "{}"
# create an instance of ChangedEvent from a JSON string
changed_event_instance = ChangedEvent.from_json(json)
# print the JSON string representation of the object
print ChangedEvent.to_json()

# convert the object into a dict
changed_event_dict = changed_event_instance.to_dict()
# create an instance of ChangedEvent from a dict
changed_event_form_dict = changed_event.from_dict(changed_event_dict)

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