Message entity
| Name | Type | Description | Notes |
|---|---|---|---|
| attachments | List[AttachmentData] | Message attachments and images | [optional] |
| author | AuthorActor1 | [optional] | |
| creation_ts | str | Timestamp when the message was published first time | |
| html | str | Message text in html format | |
| id | str | Unique id of message | |
| links | SourcesLinks | [optional] | |
| text | str | Message text |
from verity471.models.chat_message_stream import ChatMessageStream
# TODO update the JSON string below
json = "{}"
# create an instance of ChatMessageStream from a JSON string
chat_message_stream_instance = ChatMessageStream.from_json(json)
# print the JSON string representation of the object
print(ChatMessageStream.to_json())
# convert the object into a dict
chat_message_stream_dict = chat_message_stream_instance.to_dict()
# create an instance of ChatMessageStream from a dict
chat_message_stream_from_dict = ChatMessageStream.from_dict(chat_message_stream_dict)