(self, project_id: str = "", topic_id: str = "", viewpoint_id: str = "")
| 413 | ) |
| 414 | |
| 415 | def get_snapshot(self, project_id: str = "", topic_id: str = "", viewpoint_id: str = "") -> str: |
| 416 | return self.get( |
| 417 | f"/projects/{project_id}/topics/{topic_id}/viewpoints/{viewpoint_id}/snapshot", |
| 418 | { |
| 419 | "project_id": project_id, |
| 420 | "topic_id": topic_id, |
| 421 | "viewpoint_id": viewpoint_id, |
| 422 | }, |
| 423 | ) |
| 424 | |
| 425 | def get_bitmap(self, project_id: str = "", topic_id: str = "", viewpoint_id: str = "", bitmap_id: str = "") -> str: |
| 426 | return self.get( |