Skip to content

ResearchGoalCreate

Properties

NameTypeDescriptionNotes
descriptionstr[optional]
project_idstr

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)

[Back to API list] [Back to SDK]

Released under the MIT License.