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