You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @param non-negative-int|null $matchedTasks The number of matched tasks. If the API key used for the request doesn’t have access to an index, tasks relating to that index will not be included in matchedTasks.
20
-
* @param non-negative-int|null $canceledTasks The number of tasks successfully canceled. If the task cancellation fails, this will be 0. null when the task status is enqueued or processing.
21
-
* @param string|null $originalFilter the filter used in the delete task request
20
+
* @param non-negative-int|null $deletedTasks The number of tasks successfully deleted. If the task deletion fails, this will be 0. null when the task status is enqueued or processing.
21
+
* @param string|null $originalFilter The filter used in the delete task request.
22
22
*/
23
23
publicfunction__construct(
24
24
publicreadonly ?int$matchedTasks,
25
-
publicreadonly ?int$canceledTasks,
25
+
publicreadonly ?int$deletedTasks,
26
26
publicreadonly ?string$originalFilter,
27
27
) {
28
28
}
@@ -31,7 +31,7 @@ public static function fromArray(array $data): self
0 commit comments