Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.04 KB

File metadata and controls

31 lines (22 loc) · 1.04 KB

DatStateMessage

Properties

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

Example

from dat_client.models.dat_state_message import DatStateMessage

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

# convert the object into a dict
dat_state_message_dict = dat_state_message_instance.to_dict()
# create an instance of DatStateMessage from a dict
dat_state_message_from_dict = DatStateMessage.from_dict(dat_state_message_dict)

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