Appearance
SubPlan
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| created_at | datetime | ||
| plan_id | str | ||
| parent_id | str | ||
| type | AppApiSchemasPlannerSubPlanType | ||
| max_study | int | [optional] | |
| suggestions | List[Suggestion] | [optional] | |
| status | str | ||
| reports | List[Report] | ||
| data | Dict[str, object] |
Example
python
from syntheticusers.models.sub_plan import SubPlan
# TODO update the JSON string below
json = "{}"
# create an instance of SubPlan from a JSON string
sub_plan_instance = SubPlan.from_json(json)
# print the JSON string representation of the object
print(SubPlan.to_json())
# convert the object into a dict
sub_plan_dict = sub_plan_instance.to_dict()
# create an instance of SubPlan from a dict
sub_plan_from_dict = SubPlan.from_dict(sub_plan_dict)