Skip to content

SubPlanCreate

Properties

NameTypeDescriptionNotes
created_atdatetime[optional]
plan_idstr
parent_idstr[optional]
typeAppApiSchemasPlannerSubPlanType[optional]
max_studyint[optional]
suggestionsList[Suggestion][optional]
dataDict[str, object][optional]
conceptsList[ConceptBase][optional]
audience_idstr[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)

[Back to API list] [Back to SDK]

Released under the MIT License.