metadata generated by a Source, to be passed through Generator and loaded to Destination
| Name | Type | Description | Notes |
|---|---|---|---|
| dat_source | object | ||
| dat_stream | object | ||
| dat_document_entity | DatDocumentEntity | [optional] | |
| dat_last_modified | DatLastModified | [optional] | |
| dat_document_chunk | DatDocumentChunk | [optional] |
from dat_client.models.data_metadata import DataMetadata
# TODO update the JSON string below
json = "{}"
# create an instance of DataMetadata from a JSON string
data_metadata_instance = DataMetadata.from_json(json)
# print the JSON string representation of the object
print(DataMetadata.to_json())
# convert the object into a dict
data_metadata_dict = data_metadata_instance.to_dict()
# create an instance of DataMetadata from a dict
data_metadata_from_dict = DataMetadata.from_dict(data_metadata_dict)