Skip to content

Latest commit

History

History
32 lines (23 loc) · 1.07 KB

File metadata and controls

32 lines (23 loc) · 1.07 KB

EventSourceDelta

Properties

NameTypeDescriptionNotes
dataSourceDeltaEvent
eventstrThe event name.
idintThe event ID.[optional]
retryintThe retry time in milliseconds.[optional]

Example

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)

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