Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 958 Bytes

WaitingEventData.md

File metadata and controls

29 lines (20 loc) · 958 Bytes

WaitingEventData

Properties

Name Type Description Notes
prev QueueEvents [optional]

Example

from waylay.services.registry.models.waiting_event_data import WaitingEventData

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

# convert the object into a dict
waiting_event_data_dict = waiting_event_data_instance.to_dict()
# create an instance of WaitingEventData from a dict
waiting_event_data_form_dict = waiting_event_data.from_dict(waiting_event_data_dict)

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