Appearance
PageResearchGoal
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| items | List[ResearchGoal] | ||
| total | int | ||
| page | int | ||
| size | int | ||
| pages | int | [optional] |
Example
python
from syntheticusers.models.page_research_goal import PageResearchGoal
# TODO update the JSON string below
json = "{}"
# create an instance of PageResearchGoal from a JSON string
page_research_goal_instance = PageResearchGoal.from_json(json)
# print the JSON string representation of the object
print(PageResearchGoal.to_json())
# convert the object into a dict
page_research_goal_dict = page_research_goal_instance.to_dict()
# create an instance of PageResearchGoal from a dict
page_research_goal_from_dict = PageResearchGoal.from_dict(page_research_goal_dict)