MCPcopy Create free account
hub / github.com/IfcOpenShell/IfcOpenShell / create_comments

Method create_comments

src/bcf/bcf/v3/bcfapi.py:343–353  ·  view source on GitHub ↗
(
        self,
        project_id: str = "",
        topic_id: str = "",
        data: Any = None,
        params: Any = None,
    )

Source from the content-addressed store, hash-verified

341 pass
342
343 def create_comments(
344 self,
345 project_id: str = "",
346 topic_id: str = "",
347 data: Any = None,
348 params: Any = None,
349 ) -> tuple[int, str]:
350 return self.post(
351 f"/projects/{project_id}/topics/{topic_id}/comments",
352 data=data,
353 )
354
355 def get_comment(self, project_id: str = "", topic_id: str = "", comment_id: str = "") -> dict[str, Any]:
356 return self.get(

Callers

nothing calls this directly

Calls 1

postMethod · 0.95

Tested by

no test coverage detected