DataWriteResponse defines the structure of the response after writing data. It contains the snap_token generated after the write operation.
| Name | Type | Description | Notes |
|---|---|---|---|
| snap_token | str | The snap token to avoid stale cache, see more details on Snap Tokens. | [optional] |
frompermify_async.models.data_write_responseimportDataWriteResponse# TODO update the JSON string belowjson="{}"# create an instance of DataWriteResponse from a JSON stringdata_write_response_instance=DataWriteResponse.from_json(json)
# print the JSON string representation of the objectprint(DataWriteResponse.to_json())
# convert the object into a dictdata_write_response_dict=data_write_response_instance.to_dict()
# create an instance of DataWriteResponse from a dictdata_write_response_from_dict=DataWriteResponse.from_dict(data_write_response_dict)