Appearance
ConceptInput
Represents a single concept provided for script generation.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| title | str | The title of the concept. | |
| description | str | The 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)