| Name | Type | Description | Notes |
|---|---|---|---|
| data | AttemptFailedEvent | ||
| event | str | The event name. | |
| id | int | The event ID. | [optional] |
| retry | int | The retry time in milliseconds. | [optional] |
from revengai.models.event_attempt_failed import EventAttemptFailed
# TODO update the JSON string below
json = "{}"
# create an instance of EventAttemptFailed from a JSON string
event_attempt_failed_instance = EventAttemptFailed.from_json(json)
# print the JSON string representation of the object
print(EventAttemptFailed.to_json())
# convert the object into a dict
event_attempt_failed_dict = event_attempt_failed_instance.to_dict()
# create an instance of EventAttemptFailed from a dict
event_attempt_failed_from_dict = EventAttemptFailed.from_dict(event_attempt_failed_dict)