(self, group_id: int)
| 703 | self.command("project.group.delete", {"groupId": group_id}) |
| 704 | |
| 705 | def duplicate_group(self, group_id: int) -> dict: |
| 706 | return self.command("project.group.duplicate", {"groupId": group_id}) |
| 707 | |
| 708 | def add_dataset(self, group_id: int, options: int = 0) -> dict: |
| 709 | """Add a dataset to a group; returns the new dataset record.""" |