repo/rest-api/src/Application/UseCaseRequestValidation/DeserializedPropertyIdRequest.php
<?php declare( strict_types=1 );
namespace Wikibase\Repo\RestApi\Application\UseCaseRequestValidation;
use Wikibase\DataModel\Entity\NumericPropertyId;
/**
* @license GPL-2.0-or-later
*/
interface DeserializedPropertyIdRequest {
public function getPropertyId(): NumericPropertyId;
}