Appearance
SummaryMessageCreate
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| message | str |
Example
python
from syntheticusers.models.summary_message_create import SummaryMessageCreate
# TODO update the JSON string below
json = "{}"
# create an instance of SummaryMessageCreate from a JSON string
summary_message_create_instance = SummaryMessageCreate.from_json(json)
# print the JSON string representation of the object
print(SummaryMessageCreate.to_json())
# convert the object into a dict
summary_message_create_dict = summary_message_create_instance.to_dict()
# create an instance of SummaryMessageCreate from a dict
summary_message_create_from_dict = SummaryMessageCreate.from_dict(summary_message_create_dict)