Skip to content

PlanCreate

Properties

NameTypeDescriptionNotes
namestr[optional]
project_idstr
audiencestr[optional]
research_goalstr[optional]
created_atdatetime[optional]

Example

python
from syntheticusers.models.plan_create import PlanCreate

# TODO update the JSON string below
json = "{}"
# create an instance of PlanCreate from a JSON string
plan_create_instance = PlanCreate.from_json(json)
# print the JSON string representation of the object
print(PlanCreate.to_json())

# convert the object into a dict
plan_create_dict = plan_create_instance.to_dict()
# create an instance of PlanCreate from a dict
plan_create_from_dict = PlanCreate.from_dict(plan_create_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.