| Name | Type | Description | Notes |
|---|---|---|---|
| namespace | Namespace | [optional] | |
| stream | DatDocumentStreamInput | stream the data is associated with | [optional] |
| data | Data | record data | |
| emitted_at | object | when the data was emitted from the source. epoch in millisecond. | [optional] |
from dat_client.models.dat_document_message import DatDocumentMessage
# TODO update the JSON string below
json = "{}"
# create an instance of DatDocumentMessage from a JSON string
dat_document_message_instance = DatDocumentMessage.from_json(json)
# print the JSON string representation of the object
print(DatDocumentMessage.to_json())
# convert the object into a dict
dat_document_message_dict = dat_document_message_instance.to_dict()
# create an instance of DatDocumentMessage from a dict
dat_document_message_from_dict = DatDocumentMessage.from_dict(dat_document_message_dict)