Skip to content

Latest commit

History

History
30 lines (21 loc) · 1.15 KB

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

NameTypeDescriptionNotes
snap_tokenstrThe snap token to avoid stale cache, see more details on Snap Tokens.[optional]

Example

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)

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