spreed/lib/Recording/RecordingStoppedRequest.php
Joas Schilling 0da4dc4d77
feat(recording): Move RecordingRequest to Valinor
Signed-off-by: Joas Schilling <coding@schilljs.com>
2025-11-14 16:37:46 +01:00

19 lines
412 B
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\Talk\Recording;
final readonly class RecordingStoppedRequest {
public function __construct(
/** @var non-empty-string */
public string $token,
/** @var ?array{type: string, id: string} */
public ?array $actor = null,
) {
}
}