Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1015 Bytes

WatchResponse.md

File metadata and controls

30 lines (21 loc) · 1015 Bytes

WatchResponse

WatchResponse is the response message for the Watch RPC. It contains the changes in the data that are being watched.

Properties

Name Type Description Notes
changes DataChanges [optional]

Example

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)

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