Skip to content

SummarySection

Properties

NameTypeDescriptionNotes
idstr
summary_idstr
created_atdatetime
titlestr
contentstr

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)

[Back to API list] [Back to SDK]

Released under the MIT License.