| Name |
Type |
Description |
Notes |
| data |
object |
|
|
| event_id |
int |
|
|
| type |
str |
|
|
from revengai.models.sse_event_title_updated_data import SseEventTitleUpdatedData
# TODO update the JSON string below
json = "{}"
# create an instance of SseEventTitleUpdatedData from a JSON string
sse_event_title_updated_data_instance = SseEventTitleUpdatedData.from_json(json)
# print the JSON string representation of the object
print(SseEventTitleUpdatedData.to_json())
# convert the object into a dict
sse_event_title_updated_data_dict = sse_event_title_updated_data_instance.to_dict()
# create an instance of SseEventTitleUpdatedData from a dict
sse_event_title_updated_data_from_dict = SseEventTitleUpdatedData.from_dict(sse_event_title_updated_data_dict)
[Back to Model list] [Back to API list] [Back to README]