Skip to content

Plan

Properties

NameTypeDescriptionNotes
idstr
namestr
project_idstr
created_bystr
audiencestr
research_goalstr
created_atdatetime
subplansList[SubPlan][optional]
graph_dataDict[str, object]

Example

python
from syntheticusers.models.plan import Plan

# TODO update the JSON string below
json = "{}"
# create an instance of Plan from a JSON string
plan_instance = Plan.from_json(json)
# print the JSON string representation of the object
print(Plan.to_json())

# convert the object into a dict
plan_dict = plan_instance.to_dict()
# create an instance of Plan from a dict
plan_from_dict = Plan.from_dict(plan_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.