Appearance
ResearchGoalCreate
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| description | str | [optional] | |
| project_id | str |
Example
python
from syntheticusers.models.research_goal_create import ResearchGoalCreate
# TODO update the JSON string below
json = "{}"
# create an instance of ResearchGoalCreate from a JSON string
research_goal_create_instance = ResearchGoalCreate.from_json(json)
# print the JSON string representation of the object
print(ResearchGoalCreate.to_json())
# convert the object into a dict
research_goal_create_dict = research_goal_create_instance.to_dict()
# create an instance of ResearchGoalCreate from a dict
research_goal_create_from_dict = ResearchGoalCreate.from_dict(research_goal_create_dict)