Appearance
SyntheticUser
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| audience_id | str | ||
| audience_description | str | ||
| project_id | str | ||
| created_at | datetime | ||
| status | str | ||
| backstory | str | ||
| description | str | ||
| personal_information | Dict[str, object] | ||
| personality_traits | Dict[str, object] | ||
| miscellaneous | Dict[str, object] |
Example
python
from syntheticusers.models.synthetic_user import SyntheticUser
# TODO update the JSON string below
json = "{}"
# create an instance of SyntheticUser from a JSON string
synthetic_user_instance = SyntheticUser.from_json(json)
# print the JSON string representation of the object
print(SyntheticUser.to_json())
# convert the object into a dict
synthetic_user_dict = synthetic_user_instance.to_dict()
# create an instance of SyntheticUser from a dict
synthetic_user_from_dict = SyntheticUser.from_dict(synthetic_user_dict)