Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.21 KB

File metadata and controls

34 lines (25 loc) · 1.21 KB

DataMetadata

metadata generated by a Source, to be passed through Generator and loaded to Destination

Properties

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]

Example

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)

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