Method
get_viewpoint
(self, project_id: str = "", topic_id: str = "", viewpoint_id: str = "")
Source from the content-addressed store, hash-verified
| 393 | ) |
| 394 | |
| 395 | def get_viewpoint(self, project_id: str = "", topic_id: str = "", viewpoint_id: str = "") -> dict[str, Any]: |
| 396 | return self.get( |
| 397 | f"/projects/{project_id}/topics/{topic_id}/viewpoints/{viewpoint_id}", |
| 398 | { |
| 399 | "project_id": project_id, |
| 400 | "topic_id": topic_id, |
| 401 | "viewpoint_id": viewpoint_id, |
| 402 | }, |
| 403 | ) |
| 404 | |
| 405 | def delete_viewpoint( |
| 406 | self, |
Callers
nothing calls this directly
Tested by
no test coverage detected