aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/SpeechToText/ISpeechToTextProviderWithId.php
blob: 8020c6c9b96ef71c09b3b22f2d3c8604ce12884d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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;
}