@@ -101,7 +101,7 @@ def update(
101101 in the task settings.
102102 restart_on_error: If true, the Task run process will be restarted whenever it exits with
103103 a non-zero status code.
104- task_input: Task input dictionary or `TaskInput` model .
104+ task_input: Task input dictionary.
105105 title: A human-friendly equivalent of the name.
106106 actor_standby_desired_requests_per_actor_run: The desired number of concurrent HTTP requests for
107107 a single Actor Standby run.
@@ -164,7 +164,7 @@ def start(
164164 https://docs.apify.com/api/v2#/reference/actor-tasks/run-collection/run-task
165165
166166 Args:
167- task_input: Task input dictionary or `TaskInput` model .
167+ task_input: Task input dictionary.
168168 build: Specifies the Actor build to run. It can be either a build tag or build number. By default,
169169 the run uses the build specified in the task settings (typically latest).
170170 max_items: Maximum number of results that will be returned by this run. If the Actor is charged
@@ -180,7 +180,7 @@ def start(
180180 webhooks: Optional ad-hoc webhooks (https://docs.apify.com/webhooks/ad-hoc-webhooks) associated with
181181 the Actor run which can be used to receive a notification, e.g. when the Actor finished or failed.
182182 If you already have a webhook set up for the Actor or task, you do not have to add it again here.
183- Each webhook is represented by a dictionary or `WebhookCreate` model containing these items:
183+ Each webhook is represented by a dictionary containing these items:
184184 * `event_types`: List of `WebhookEventType` values which trigger the webhook.
185185 * `request_url`: URL to which to send the webhook HTTP request.
186186 * `payload_template`: Optional template for the request payload.
@@ -231,7 +231,7 @@ def call(
231231 https://docs.apify.com/api/v2#/reference/actor-tasks/run-collection/run-task
232232
233233 Args:
234- task_input: Task input dictionary or `TaskInput` model .
234+ task_input: Task input dictionary.
235235 build: Specifies the Actor build to run. It can be either a build tag or build number. By default,
236236 the run uses the build specified in the task settings (typically latest).
237237 max_items: Maximum number of results that will be returned by this run. If the Actor is charged per result,
@@ -295,7 +295,7 @@ def update_input(self, *, task_input: dict | TaskInput) -> dict:
295295 https://docs.apify.com/api/v2#/reference/actor-tasks/task-input-object/update-task-input
296296
297297 Args:
298- task_input: The new default input for this task, as a dictionary or `TaskInput` model .
298+ task_input: The new default input for this task.
299299
300300 Returns:
301301 The updated task input.
@@ -405,7 +405,7 @@ async def update(
405405 in the task settings.
406406 restart_on_error: If true, the Task run process will be restarted whenever it exits with
407407 a non-zero status code.
408- task_input: Task input dictionary or `TaskInput` model .
408+ task_input: Task input dictionary.
409409 title: A human-friendly equivalent of the name.
410410 actor_standby_desired_requests_per_actor_run: The desired number of concurrent HTTP requests for
411411 a single Actor Standby run.
@@ -468,7 +468,7 @@ async def start(
468468 https://docs.apify.com/api/v2#/reference/actor-tasks/run-collection/run-task
469469
470470 Args:
471- task_input: Task input dictionary or `TaskInput` model .
471+ task_input: Task input dictionary.
472472 build: Specifies the Actor build to run. It can be either a build tag or build number. By default,
473473 the run uses the build specified in the task settings (typically latest).
474474 max_items: Maximum number of results that will be returned by this run. If the Actor is charged
@@ -484,7 +484,7 @@ async def start(
484484 webhooks: Optional ad-hoc webhooks (https://docs.apify.com/webhooks/ad-hoc-webhooks) associated with
485485 the Actor run which can be used to receive a notification, e.g. when the Actor finished or failed.
486486 If you already have a webhook set up for the Actor or task, you do not have to add it again here.
487- Each webhook is represented by a dictionary or `WebhookCreate` model containing these items:
487+ Each webhook is represented by a dictionary containing these items:
488488 * `event_types`: List of `WebhookEventType` values which trigger the webhook.
489489 * `request_url`: URL to which to send the webhook HTTP request.
490490 * `payload_template`: Optional template for the request payload.
@@ -535,7 +535,7 @@ async def call(
535535 https://docs.apify.com/api/v2#/reference/actor-tasks/run-collection/run-task
536536
537537 Args:
538- task_input: Task input dictionary or `TaskInput` model .
538+ task_input: Task input dictionary.
539539 build: Specifies the Actor build to run. It can be either a build tag or build number. By default,
540540 the run uses the build specified in the task settings (typically latest).
541541 max_items: Maximum number of results that will be returned by this run. If the Actor is charged per result,
@@ -598,7 +598,7 @@ async def update_input(self, *, task_input: dict | TaskInput) -> dict:
598598 https://docs.apify.com/api/v2#/reference/actor-tasks/task-input-object/update-task-input
599599
600600 Args:
601- task_input: The new default input for this task, as a dictionary or `TaskInput` model .
601+ task_input: The new default input for this task.
602602
603603 Returns:
604604 The updated task input.
0 commit comments