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