(self, action_id: int)
| 768 | return self.command("project.action.update", params) |
| 769 | |
| 770 | def delete_action(self, action_id: int) -> None: |
| 771 | self.command("project.action.delete", {"actionId": action_id}) |
| 772 | |
| 773 | def duplicate_action(self, action_id: int) -> dict: |
| 774 | return self.command("project.action.duplicate", {"actionId": action_id}) |