MCPcopy
hub / github.com/OpenHands/OpenHands / RepositoryPage

Class RepositoryPage

openhands/app_server/git/git_models.py:46–55  ·  view source on GitHub ↗

Paginated response for repositories. Attributes: items: List of repositories in the current page. next_page_id: ID for the next page, or None if there are no more pages.

Source from the content-addressed store, hash-verified

44
45
46class RepositoryPage(BaseModel):
47 """Paginated response for repositories.
48
49 Attributes:
50 items: List of repositories in the current page.
51 next_page_id: ID for the next page, or None if there are no more pages.
52 """
53
54 items: list[Repository]
55 next_page_id: str | None = None
56
57
58class BranchPage(BaseModel):

Callers 1

search_repositoriesFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected