(self, project_id: str = "")
| 309 | return response.status_code |
| 310 | |
| 311 | def get_files_information(self, project_id: str = "") -> list[Any]: |
| 312 | return self.get( |
| 313 | f"/projects/{project_id}/files_information", |
| 314 | { |
| 315 | "project_id": project_id, |
| 316 | }, |
| 317 | ) |
| 318 | |
| 319 | def get_files(self, project_id: str = "", topic_id: str = "") -> list[Any]: |
| 320 | return self.get( |