Skip to content

ConceptInput

Represents a single concept provided for script generation.

Properties

NameTypeDescriptionNotes
titlestrThe title of the concept.
descriptionstrThe description of the concept.

Example

python
from syntheticusers.models.concept_input import ConceptInput

# TODO update the JSON string below
json = "{}"
# create an instance of ConceptInput from a JSON string
concept_input_instance = ConceptInput.from_json(json)
# print the JSON string representation of the object
print(ConceptInput.to_json())

# convert the object into a dict
concept_input_dict = concept_input_instance.to_dict()
# create an instance of ConceptInput from a dict
concept_input_from_dict = ConceptInput.from_dict(concept_input_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.