| Name | Type | Description | Notes |
|---|---|---|---|
| data | SourceDeltaEvent | ||
| event | str | The event name. | |
| id | int | The event ID. | [optional] |
| retry | int | The retry time in milliseconds. | [optional] |
fromrevengai.models.event_source_deltaimportEventSourceDelta# TODO update the JSON string belowjson="{}"# create an instance of EventSourceDelta from a JSON stringevent_source_delta_instance=EventSourceDelta.from_json(json)
# print the JSON string representation of the objectprint(EventSourceDelta.to_json())
# convert the object into a dictevent_source_delta_dict=event_source_delta_instance.to_dict()
# create an instance of EventSourceDelta from a dictevent_source_delta_from_dict=EventSourceDelta.from_dict(event_source_delta_dict)