Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 930 Bytes

File metadata and controls

31 lines (22 loc) · 930 Bytes

ProjectCount

Count of related entities

Properties

Name Type Description Notes
pages int [optional]
suggestions int [optional]

Example

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)

[Back to Model list] [Back to API list] [Back to README]