Name | Type | Description | Notes |
---|---|---|---|
result | WatchResponse | [optional] | |
error | Status | [optional] |
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)