:calls: `GET /users/{username}/received_events/public `_
(self)
| 499 | ) |
| 500 | |
| 501 | def get_public_received_events(self) -> PaginatedList[Event]: |
| 502 | """ |
| 503 | :calls: `GET /users/{username}/received_events/public <https://docs.github.com/en/rest/reference/activity#events>`_ |
| 504 | """ |
| 505 | return github.PaginatedList.PaginatedList( |
| 506 | github.Event.Event, |
| 507 | self._requester, |
| 508 | f"{self.url}/received_events/public", |
| 509 | None, |
| 510 | ) |
| 511 | |
| 512 | def get_received_events(self) -> PaginatedList[Event]: |
| 513 | """ |
no outgoing calls
no test coverage detected