Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1008 Bytes

FailedEventData.md

File metadata and controls

30 lines (21 loc) · 1008 Bytes

FailedEventData

Properties

Name Type Description Notes
prev QueueEvents [optional]
failed_reason str The failure reason of the job

Example

from waylay.services.registry.models.failed_event_data import FailedEventData

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

# convert the object into a dict
failed_event_data_dict = failed_event_data_instance.to_dict()
# create an instance of FailedEventData from a dict
failed_event_data_form_dict = failed_event_data.from_dict(failed_event_data_dict)

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