Skip to content

PageResearchGoal

Properties

NameTypeDescriptionNotes
itemsList[ResearchGoal]
totalint
pageint
sizeint
pagesint[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)

[Back to API list] [Back to SDK]

Released under the MIT License.