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