Appearance
AudienceGenerate
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| quantity | int | ||
| problems | List[str] | ||
| research_goal_id | str | ||
| files | List[str] |
Example
python
from syntheticusers.models.audience_generate import AudienceGenerate
# TODO update the JSON string below
json = "{}"
# create an instance of AudienceGenerate from a JSON string
audience_generate_instance = AudienceGenerate.from_json(json)
# print the JSON string representation of the object
print(AudienceGenerate.to_json())
# convert the object into a dict
audience_generate_dict = audience_generate_instance.to_dict()
# create an instance of AudienceGenerate from a dict
audience_generate_from_dict = AudienceGenerate.from_dict(audience_generate_dict)