Appearance
SummarySection
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| summary_id | str | ||
| created_at | datetime | ||
| title | str | ||
| content | str |
Example
python
from syntheticusers.models.summary_section import SummarySection
# TODO update the JSON string below
json = "{}"
# create an instance of SummarySection from a JSON string
summary_section_instance = SummarySection.from_json(json)
# print the JSON string representation of the object
print(SummarySection.to_json())
# convert the object into a dict
summary_section_dict = summary_section_instance.to_dict()
# create an instance of SummarySection from a dict
summary_section_from_dict = SummarySection.from_dict(summary_section_dict)