| 423 | ) |
| 424 | |
| 425 | def get_bitmap(self, project_id: str = "", topic_id: str = "", viewpoint_id: str = "", bitmap_id: str = "") -> str: |
| 426 | return self.get( |
| 427 | f"/projects/{project_id}/topics/{topic_id}/viewpoints/{viewpoint_id}/bitmaps/{bitmap_id}", |
| 428 | { |
| 429 | "project_id": project_id, |
| 430 | "topic_id": topic_id, |
| 431 | "viewpoint_id": viewpoint_id, |
| 432 | "bitmap_id": bitmap_id, |
| 433 | }, |
| 434 | ) |
| 435 | |
| 436 | def get_selection(self, project_id: str = "", topic_id: str = "", viewpoint_id: str = "") -> dict[str, Any]: |
| 437 | return self.get( |