Method
get_viewpoints
(self, project_id: str = "", topic_id: str = "")
Source from the content-addressed store, hash-verified
| 378 | ) |
| 379 | |
| 380 | def get_viewpoints(self, project_id: str = "", topic_id: str = "") -> list[Any]: |
| 381 | return self.get( |
| 382 | f"/projects/{project_id}/topics/{topic_id}/viewpoints", |
| 383 | { |
| 384 | "project_id": project_id, |
| 385 | "topic_id": topic_id, |
| 386 | }, |
| 387 | ) |
| 388 | |
| 389 | def create_viewpoints(self, project_id: str = "", topic_id: str = "", data: Any = None) -> tuple[int, str]: |
| 390 | return self.post( |
Callers
nothing calls this directly
Tested by
no test coverage detected