Delete a source by ID (Commercial only; sourceId >= 1).
(self, source_id: int)
| 609 | return result.get("sourceId", -1) |
| 610 | |
| 611 | def source_delete(self, source_id: int) -> None: |
| 612 | """Delete a source by ID (Commercial only; sourceId >= 1).""" |
| 613 | self.command("project.source.delete", {"sourceId": source_id}) |
| 614 | |
| 615 | def source_update(self, source_id: int, **kwargs) -> None: |
| 616 | """Update source fields. Accepted kwargs: title, busType, frameStart, |