Appearance
ConceptBase
Schema for representing concept data, now used for suggestion objects with type='concept'
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| title | str | ||
| description | str | ||
| files | List[str] |
Example
python
from syntheticusers.models.concept_base import ConceptBase
# TODO update the JSON string below
json = "{}"
# create an instance of ConceptBase from a JSON string
concept_base_instance = ConceptBase.from_json(json)
# print the JSON string representation of the object
print(ConceptBase.to_json())
# convert the object into a dict
concept_base_dict = concept_base_instance.to_dict()
# create an instance of ConceptBase from a dict
concept_base_from_dict = ConceptBase.from_dict(concept_base_dict)