Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.13 KB

StreamResultOfWatchResponse.md

File metadata and controls

30 lines (21 loc) · 1.13 KB

StreamResultOfWatchResponse

Properties

Name Type Description Notes
result WatchResponse [optional]
error Status [optional]

Example

from permify.models.stream_result_of_watch_response import StreamResultOfWatchResponse

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

# convert the object into a dict
stream_result_of_watch_response_dict = stream_result_of_watch_response_instance.to_dict()
# create an instance of StreamResultOfWatchResponse from a dict
stream_result_of_watch_response_from_dict = StreamResultOfWatchResponse.from_dict(stream_result_of_watch_response_dict)

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