Skip to content

SyntheticUser

Properties

NameTypeDescriptionNotes
idstr
audience_idstr
audience_descriptionstr
project_idstr
created_atdatetime
statusstr
backstorystr
descriptionstr
personal_informationDict[str, object]
personality_traitsDict[str, object]
miscellaneousDict[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)

[Back to API list] [Back to SDK]

Released under the MIT License.