Appearance
Plan
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| name | str | ||
| project_id | str | ||
| created_by | str | ||
| audience | str | ||
| research_goal | str | ||
| created_at | datetime | ||
| subplans | List[SubPlan] | [optional] | |
| graph_data | Dict[str, object] |
Example
python
from syntheticusers.models.plan import Plan
# TODO update the JSON string below
json = "{}"
# create an instance of Plan from a JSON string
plan_instance = Plan.from_json(json)
# print the JSON string representation of the object
print(Plan.to_json())
# convert the object into a dict
plan_dict = plan_instance.to_dict()
# create an instance of Plan from a dict
plan_from_dict = Plan.from_dict(plan_dict)