Appearance
PlanCreate
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | [optional] | |
| project_id | str | ||
| audience | str | [optional] | |
| research_goal | str | [optional] | |
| created_at | datetime | [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)