* SPDX-License-Identifier: AGPL-3.0-or-later */ namespace KTXF\Resource\Documents\Entity; use KTXF\Resource\Provider\Node\NodePropertiesMutableInterface; interface EntityPropertiesMutableInterface extends EntityPropertiesBaseInterface, NodePropertiesMutableInterface { public const JSON_TYPE = EntityPropertiesBaseInterface::JSON_TYPE; public function setLabel(string $value): static; public function setMime(string $value): static; public function setFormat(string $value): static; public function setEncoding(string $value): static; }