Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.15 KB

DataWriteResponse.md

File metadata and controls

30 lines (21 loc) · 1.15 KB

DataWriteResponse

DataWriteResponse defines the structure of the response after writing data. It contains the snap_token generated after the write operation.

Properties

Name Type Description Notes
snap_token str The snap token to avoid stale cache, see more details on Snap Tokens. [optional]

Example

from permify.models.data_write_response import DataWriteResponse

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

# convert the object into a dict
data_write_response_dict = data_write_response_instance.to_dict()
# create an instance of DataWriteResponse from a dict
data_write_response_from_dict = DataWriteResponse.from_dict(data_write_response_dict)

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