Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.14 KB

File metadata and controls

32 lines (23 loc) · 1.14 KB

DatMessageState

schema message: the state. Must be the last message produced. The platform uses this information

Properties

Name Type Description Notes
stream DatDocumentStreamInput
stream_state StreamState
emitted_at EmittedAt [optional]

Example

from dat_client.models.dat_message_state import DatMessageState

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

# convert the object into a dict
dat_message_state_dict = dat_message_state_instance.to_dict()
# create an instance of DatMessageState from a dict
dat_message_state_from_dict = DatMessageState.from_dict(dat_message_state_dict)

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