Method
delete_viewpoint
(
self,
project_id: str = "",
topic_id: str = "",
viewpoint_id: str = "",
)
Source from the content-addressed store, hash-verified
| 403 | ) |
| 404 | |
| 405 | def delete_viewpoint( |
| 406 | self, |
| 407 | project_id: str = "", |
| 408 | topic_id: str = "", |
| 409 | viewpoint_id: str = "", |
| 410 | ) -> tuple[int, str]: |
| 411 | return self.delete( |
| 412 | f"/projects/{project_id}/topics/{topic_id}/viewpoints/{viewpoint_id}", |
| 413 | ) |
| 414 | |
| 415 | def get_snapshot(self, project_id: str = "", topic_id: str = "", viewpoint_id: str = "") -> str: |
| 416 | return self.get( |
Callers
nothing calls this directly
Tested by
no test coverage detected