aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/SpeechToText/ISpeechToTextProviderWithId.php
blob: a1d73d10a58f41cfdb6930bc3436888b9e5ef3ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php

/**
 * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
 * SPDX-License-Identifier: AGPL-3.0-or-later
 */
namespace OCP\SpeechToText;

/**
 * @since 28.0.0
 */
interface ISpeechToTextProviderWithId extends ISpeechToTextProvider {

	/**
	 * @since 28.0.0
	 */
	public function getId(): string;
}