:calls: `GET /orgs/{org}/installations `_ :rtype: :class:`PaginatedList` of :class:`github.Installation.Installation`
(self)
| 1561 | ) |
| 1562 | |
| 1563 | def get_installations(self) -> PaginatedList[Installation]: |
| 1564 | """ |
| 1565 | :calls: `GET /orgs/{org}/installations <https://docs.github.com/en/rest/reference/orgs#list-app-installations-for-an-organization>`_ |
| 1566 | :rtype: :class:`PaginatedList` of :class:`github.Installation.Installation` |
| 1567 | """ |
| 1568 | |
| 1569 | return PaginatedList( |
| 1570 | github.Installation.Installation, |
| 1571 | self._requester, |
| 1572 | f"{self.url}/installations", |
| 1573 | None, |
| 1574 | headers=None, |
| 1575 | list_item="installations", |
| 1576 | ) |
| 1577 | |
| 1578 | def get_dependabot_alerts( |
| 1579 | self, |
no test coverage detected