Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.22 KB

File metadata and controls

33 lines (24 loc) · 1.22 KB

DatMessageRecord

record message: the record

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_message_record import DatMessageRecord

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

# convert the object into a dict
dat_message_record_dict = dat_message_record_instance.to_dict()
# create an instance of DatMessageRecord from a dict
dat_message_record_from_dict = DatMessageRecord.from_dict(dat_message_record_dict)

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