Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.03 KB

File metadata and controls

31 lines (22 loc) · 1.03 KB

SseEventRunStartedData

Properties

Name Type Description Notes
data object
event_id int
type str

Example

from revengai.models.sse_event_run_started_data import SseEventRunStartedData

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

# convert the object into a dict
sse_event_run_started_data_dict = sse_event_run_started_data_instance.to_dict()
# create an instance of SseEventRunStartedData from a dict
sse_event_run_started_data_from_dict = SseEventRunStartedData.from_dict(sse_event_run_started_data_dict)

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