Appearance
SummaryMessage
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| summary_id | str | ||
| created_at | datetime | ||
| type | str | ||
| message | str |
Example
python
from syntheticusers.models.summary_message import SummaryMessage
# TODO update the JSON string below
json = "{}"
# create an instance of SummaryMessage from a JSON string
summary_message_instance = SummaryMessage.from_json(json)
# print the JSON string representation of the object
print(SummaryMessage.to_json())
# convert the object into a dict
summary_message_dict = summary_message_instance.to_dict()
# create an instance of SummaryMessage from a dict
summary_message_from_dict = SummaryMessage.from_dict(summary_message_dict)