A list of supported sync modes for the stream while writing.
| Name | Type | Description | Notes |
|---|
from dat_client.models.dat_document_stream_input_write_sync_mode import DatDocumentStreamInputWriteSyncMode
# TODO update the JSON string below
json = "{}"
# create an instance of DatDocumentStreamInputWriteSyncMode from a JSON string
dat_document_stream_input_write_sync_mode_instance = DatDocumentStreamInputWriteSyncMode.from_json(json)
# print the JSON string representation of the object
print(DatDocumentStreamInputWriteSyncMode.to_json())
# convert the object into a dict
dat_document_stream_input_write_sync_mode_dict = dat_document_stream_input_write_sync_mode_instance.to_dict()
# create an instance of DatDocumentStreamInputWriteSyncMode from a dict
dat_document_stream_input_write_sync_mode_from_dict = DatDocumentStreamInputWriteSyncMode.from_dict(dat_document_stream_input_write_sync_mode_dict)