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.
| 44 | |
| 45 | |
| 46 | class 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 | |
| 58 | class BranchPage(BaseModel): |
no outgoing calls
no test coverage detected