Skip to content

SubPlan

Properties

NameTypeDescriptionNotes
idstr
created_atdatetime
plan_idstr
parent_idstr
typeAppApiSchemasPlannerSubPlanType
max_studyint[optional]
suggestionsList[Suggestion][optional]
statusstr
reportsList[Report]
dataDict[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)

[Back to API list] [Back to SDK]

Released under the MIT License.