Skip to content

SubPlanUpdate

Properties

NameTypeDescriptionNotes
created_atdatetime[optional]
typeAppApiSchemasPlannerSubPlanType[optional]
max_studyint[optional]
suggestionsList[Suggestion][optional]
dataDict[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)

[Back to API list] [Back to SDK]

Released under the MIT License.