mirror of
https://github.com/nextcloud/server.git
synced 2025-01-30 22:37:01 +00:00
afa48a4e0e
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
31 lines
679 B
PHP
31 lines
679 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
namespace OCA\Files_Versions\Versions;
|
|
|
|
/**
|
|
* This interface allows for just direct accessing of the metadata column JSON
|
|
* @since 29.0.0
|
|
*/
|
|
interface IMetadataVersion {
|
|
/**
|
|
* retrieves the all the metadata
|
|
*
|
|
* @return string[]
|
|
* @since 29.0.0
|
|
*/
|
|
public function getMetadata(): array;
|
|
|
|
/**
|
|
* retrieves the metadata value from our $key param
|
|
*
|
|
* @param string $key the key for the json value of the metadata column
|
|
* @since 29.0.0
|
|
*/
|
|
public function getMetadataValue(string $key): ?string;
|
|
}
|