Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.27 KB

File metadata and controls

32 lines (23 loc) · 1.27 KB

StreamEvents200ResponseInner

Properties

Name Type Description Notes
data SseEventToolConfirmationRequiredData
event str The event name.
id int The event ID. [optional]
retry int The retry time in milliseconds. [optional]

Example

from revengai.models.stream_events200_response_inner import StreamEvents200ResponseInner

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

# convert the object into a dict
stream_events200_response_inner_dict = stream_events200_response_inner_instance.to_dict()
# create an instance of StreamEvents200ResponseInner from a dict
stream_events200_response_inner_from_dict = StreamEvents200ResponseInner.from_dict(stream_events200_response_inner_dict)

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