diff options
Diffstat (limited to 'lib/public/SpeechToText/ISpeechToTextProviderWithId.php')
-rw-r--r-- | lib/public/SpeechToText/ISpeechToTextProviderWithId.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/public/SpeechToText/ISpeechToTextProviderWithId.php b/lib/public/SpeechToText/ISpeechToTextProviderWithId.php new file mode 100644 index 00000000000..8020c6c9b96 --- /dev/null +++ b/lib/public/SpeechToText/ISpeechToTextProviderWithId.php @@ -0,0 +1,19 @@ +<?php + +/** + * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later + */ +namespace OCP\SpeechToText; + +/** + * @since 28.0.0 + * @deprecated 30.0.0 + */ +interface ISpeechToTextProviderWithId extends ISpeechToTextProvider { + + /** + * @since 28.0.0 + */ + public function getId(): string; +} |