An list of supported sync modes for the stream while reading.
| Name | Type | Description | Notes |
|---|
from dat_client.models.dat_document_stream_input_read_sync_mode import DatDocumentStreamInputReadSyncMode
# TODO update the JSON string below
json = "{}"
# create an instance of DatDocumentStreamInputReadSyncMode from a JSON string
dat_document_stream_input_read_sync_mode_instance = DatDocumentStreamInputReadSyncMode.from_json(json)
# print the JSON string representation of the object
print(DatDocumentStreamInputReadSyncMode.to_json())
# convert the object into a dict
dat_document_stream_input_read_sync_mode_dict = dat_document_stream_input_read_sync_mode_instance.to_dict()
# create an instance of DatDocumentStreamInputReadSyncMode from a dict
dat_document_stream_input_read_sync_mode_from_dict = DatDocumentStreamInputReadSyncMode.from_dict(dat_document_stream_input_read_sync_mode_dict)