Method
create_viewpoints
(self, project_id: str = "", topic_id: str = "", data: Any = None)
Source from the content-addressed store, hash-verified
| 387 | ) |
| 388 | |
| 389 | def create_viewpoints(self, project_id: str = "", topic_id: str = "", data: Any = None) -> tuple[int, str]: |
| 390 | return self.post( |
| 391 | f"/projects/{project_id}/topics/{topic_id}/viewpoints", |
| 392 | data=data, |
| 393 | ) |
| 394 | |
| 395 | def get_viewpoint(self, project_id: str = "", topic_id: str = "", viewpoint_id: str = "") -> dict[str, Any]: |
| 396 | return self.get( |
Callers
nothing calls this directly
Tested by
no test coverage detected