Appearance
SubPlanUpdate
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| created_at | datetime | [optional] | |
| type | AppApiSchemasPlannerSubPlanType | [optional] | |
| max_study | int | [optional] | |
| suggestions | List[Suggestion] | [optional] | |
| data | Dict[str, object] | [optional] |
Example
python
from syntheticusers.models.sub_plan_update import SubPlanUpdate
# TODO update the JSON string below
json = "{}"
# create an instance of SubPlanUpdate from a JSON string
sub_plan_update_instance = SubPlanUpdate.from_json(json)
# print the JSON string representation of the object
print(SubPlanUpdate.to_json())
# convert the object into a dict
sub_plan_update_dict = sub_plan_update_instance.to_dict()
# create an instance of SubPlanUpdate from a dict
sub_plan_update_from_dict = SubPlanUpdate.from_dict(sub_plan_update_dict)