To better reflect the purpose of the parameter
def execute_workflow(self, workflow_id: str, content: dict) -> Dict:
"""Start a workflow execution, calls the POST /workflows/{workflowId}/executions endpoint.
>>> from las.client import Client
>>> from pathlib import Path
>>> client = Client()
>>> content = {...}
>>> client.execute_workflow('<workflow_id>', content)
:param workflow_id: Id of the workflow
:type workflow_id: str
:param content: Input to the first step of the workflow
:type content: dict
:return: Workflow execution response from REST API
:rtype: dict