Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.22 KB

File metadata and controls

32 lines (23 loc) · 1.22 KB

DatDocumentMessage

Properties

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]

Example

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)

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