apiv3 dedicated channel (segment v2 only).
(
self,
method: str,
path: str,
json_data: Optional[Dict[str, Any]] = None,
)
| 102 | raise |
| 103 | |
| 104 | async def _v3_request( |
| 105 | self, |
| 106 | method: str, |
| 107 | path: str, |
| 108 | json_data: Optional[Dict[str, Any]] = None, |
| 109 | ) -> Dict[str, Any]: |
| 110 | """apiv3 dedicated channel (segment v2 only).""" |
| 111 | return await self._v3_impl._request(method, path, json_data=json_data) |
| 112 | |
| 113 | async def _v3_upload_file(self, file_path: str) -> str: |
| 114 | """Upload via apiv3 POST /v3/files and return file_<uuid> token.""" |
no test coverage detected