WatchResponse is the response message for the Watch RPC. It contains the changes in the data that are being watched.
Name | Type | Description | Notes |
---|---|---|---|
changes | DataChanges | [optional] |
from permify.models.watch_response import WatchResponse
# TODO update the JSON string below
json = "{}"
# create an instance of WatchResponse from a JSON string
watch_response_instance = WatchResponse.from_json(json)
# print the JSON string representation of the object
print(WatchResponse.to_json())
# convert the object into a dict
watch_response_dict = watch_response_instance.to_dict()
# create an instance of WatchResponse from a dict
watch_response_from_dict = WatchResponse.from_dict(watch_response_dict)