Skip to content

ResearchGoal

Properties

NameTypeDescriptionNotes
idstr
descriptionstr
project_idstr
created_atdatetime

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)

[Back to API list] [Back to SDK]

Released under the MIT License.