Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.03 KB

DataChanges.md

File metadata and controls

31 lines (22 loc) · 1.03 KB

DataChanges

DataChanges represent changes in data with a snap token and a list of data change objects.

Properties

Name Type Description Notes
snap_token str The snapshot token. [optional]
data_changes List[DataChange] The list of data changes. [optional]

Example

from permify.models.data_changes import DataChanges

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

# convert the object into a dict
data_changes_dict = data_changes_instance.to_dict()
# create an instance of DataChanges from a dict
data_changes_from_dict = DataChanges.from_dict(data_changes_dict)

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