Skip to content

AudienceGenerate

Properties

NameTypeDescriptionNotes
quantityint
problemsList[str]
research_goal_idstr
filesList[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)

[Back to API list] [Back to SDK]

Released under the MIT License.