Name | Type | Description | Notes |
---|---|---|---|
prev | QueueEvents | [optional] | |
failed_reason | str | The failure reason of the job |
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)