Appearance
PlanUpdate
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | [optional] | |
| audience | str | [optional] | |
| research_goal | str | [optional] | |
| created_at | datetime | [optional] | |
| graph_data | Dict[str, object] | [optional] |
Example
python
from syntheticusers.models.plan_update import PlanUpdate
# TODO update the JSON string below
json = "{}"
# create an instance of PlanUpdate from a JSON string
plan_update_instance = PlanUpdate.from_json(json)
# print the JSON string representation of the object
print(PlanUpdate.to_json())
# convert the object into a dict
plan_update_dict = plan_update_instance.to_dict()
# create an instance of PlanUpdate from a dict
plan_update_from_dict = PlanUpdate.from_dict(plan_update_dict)