| Name | Type | Description | Notes |
|---|---|---|---|
| name | object | The name of the document stream. | |
| json_schema | JsonSchema | [optional] | |
| namespace | Namespace1 | [optional] | |
| read_sync_mode | DatDocumentStreamInputReadSyncMode | [optional] | |
| write_sync_mode | DatDocumentStreamInputWriteSyncMode | [optional] | |
| cursor_field | CursorField | [optional] | |
| advanced | DatDocumentStreamInputAdvanced | [optional] |
from dat_client.models.dat_document_stream_output import DatDocumentStreamOutput
# TODO update the JSON string below
json = "{}"
# create an instance of DatDocumentStreamOutput from a JSON string
dat_document_stream_output_instance = DatDocumentStreamOutput.from_json(json)
# print the JSON string representation of the object
print(DatDocumentStreamOutput.to_json())
# convert the object into a dict
dat_document_stream_output_dict = dat_document_stream_output_instance.to_dict()
# create an instance of DatDocumentStreamOutput from a dict
dat_document_stream_output_from_dict = DatDocumentStreamOutput.from_dict(dat_document_stream_output_dict)