Skip to content

SummaryCreate

Properties

NameTypeDescriptionNotes
summarization_focusstr[optional]
pre_generatedbool[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)

[Back to API list] [Back to SDK]

Released under the MIT License.