Skip to content

PlanUpdate

Properties

NameTypeDescriptionNotes
namestr[optional]
audiencestr[optional]
research_goalstr[optional]
created_atdatetime[optional]
graph_dataDict[str, object][optional]

Example

python
from syntheticusers.models.plan_update import PlanUpdate

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

# convert the object into a dict
plan_update_dict = plan_update_instance.to_dict()
# create an instance of PlanUpdate from a dict
plan_update_from_dict = PlanUpdate.from_dict(plan_update_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.