Appearance
ResearchGoalUpdate
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| description | str | [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)