Skip to content

ResearchGoalUpdate

Properties

NameTypeDescriptionNotes
descriptionstr[optional]

Example

python
from syntheticusers.models.research_goal_update import ResearchGoalUpdate

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

# convert the object into a dict
research_goal_update_dict = research_goal_update_instance.to_dict()
# create an instance of ResearchGoalUpdate from a dict
research_goal_update_from_dict = ResearchGoalUpdate.from_dict(research_goal_update_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.