Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.02 KB

DiscoveredEvent.md

File metadata and controls

30 lines (21 loc) · 1.02 KB

DiscoveredEvent

Properties

Name Type Description Notes
type DiscoveredEventType [optional]
message object The broker message that triggered the discovery [optional]

Example

from waylay.services.resources.models.discovered_event import DiscoveredEvent

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

# convert the object into a dict
discovered_event_dict = discovered_event_instance.to_dict()
# create an instance of DiscoveredEvent from a dict
discovered_event_form_dict = discovered_event.from_dict(discovered_event_dict)

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