Appearance
ResearchGoal
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| description | str | ||
| project_id | str | ||
| created_at | datetime |
Example
python
from syntheticusers.models.research_goal import ResearchGoal
# TODO update the JSON string below
json = "{}"
# create an instance of ResearchGoal from a JSON string
research_goal_instance = ResearchGoal.from_json(json)
# print the JSON string representation of the object
print(ResearchGoal.to_json())
# convert the object into a dict
research_goal_dict = research_goal_instance.to_dict()
# create an instance of ResearchGoal from a dict
research_goal_from_dict = ResearchGoal.from_dict(research_goal_dict)