Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.1 KB

File metadata and controls

32 lines (23 loc) · 1.1 KB

SseEventStepFinishedData

Properties

Name Type Description Notes
data object
event_id int
source_run_id str [optional]
type str

Example

from revengai.models.sse_event_step_finished_data import SseEventStepFinishedData

# TODO update the JSON string below
json = "{}"
# create an instance of SseEventStepFinishedData from a JSON string
sse_event_step_finished_data_instance = SseEventStepFinishedData.from_json(json)
# print the JSON string representation of the object
print(SseEventStepFinishedData.to_json())

# convert the object into a dict
sse_event_step_finished_data_dict = sse_event_step_finished_data_instance.to_dict()
# create an instance of SseEventStepFinishedData from a dict
sse_event_step_finished_data_from_dict = SseEventStepFinishedData.from_dict(sse_event_step_finished_data_dict)

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