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