Appearance
SummaryCreate
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| summarization_focus | str | [optional] | |
| pre_generated | bool | [optional] |
Example
python
from syntheticusers.models.summary_create import SummaryCreate
# TODO update the JSON string below
json = "{}"
# create an instance of SummaryCreate from a JSON string
summary_create_instance = SummaryCreate.from_json(json)
# print the JSON string representation of the object
print(SummaryCreate.to_json())
# convert the object into a dict
summary_create_dict = summary_create_instance.to_dict()
# create an instance of SummaryCreate from a dict
summary_create_from_dict = SummaryCreate.from_dict(summary_create_dict)