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