Count of related entities
| Name | Type | Description | Notes |
|---|---|---|---|
| pages | int | [optional] | |
| suggestions | int | [optional] |
from rankvectors.models.project_count import ProjectCount
# TODO update the JSON string below
json = "{}"
# create an instance of ProjectCount from a JSON string
project_count_instance = ProjectCount.from_json(json)
# print the JSON string representation of the object
print(ProjectCount.to_json())
# convert the object into a dict
project_count_dict = project_count_instance.to_dict()
# create an instance of ProjectCount from a dict
project_count_from_dict = ProjectCount.from_dict(project_count_dict)