Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.35 KB

File metadata and controls

34 lines (25 loc) · 1.35 KB

DatDocumentStreamInput

Properties

Name Type Description Notes
name str The name of the document stream.
namespace str [optional]
json_schema object [optional]
read_sync_mode ReadSyncMode [optional]
write_sync_mode DatCorePydanticModelsDatDocumentStreamWriteSyncMode [optional]
cursor_field str [optional]

Example

from dat_client.models.dat_document_stream_input import DatDocumentStreamInput

# TODO update the JSON string below
json = "{}"
# create an instance of DatDocumentStreamInput from a JSON string
dat_document_stream_input_instance = DatDocumentStreamInput.from_json(json)
# print the JSON string representation of the object
print(DatDocumentStreamInput.to_json())

# convert the object into a dict
dat_document_stream_input_dict = dat_document_stream_input_instance.to_dict()
# create an instance of DatDocumentStreamInput from a dict
dat_document_stream_input_form_dict = dat_document_stream_input.from_dict(dat_document_stream_input_dict)

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