Skip to content

SummaryMessage

Properties

NameTypeDescriptionNotes
idstr
summary_idstr
created_atdatetime
typestr
messagestr

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)

[Back to API list] [Back to SDK]

Released under the MIT License.