nextcloud/lib/public/TaskProcessing/ShapeEnumValue.php
Marcel Klehr 799ee8fd51
feat(TaskProcessing): Implement enums and default values
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
2024-07-25 10:10:31 +02:00

43 lines
679 B
PHP

<?php
namespace OCP\TaskProcessing;
class ShapeEnumValue implements \JsonSerializable {
/**
* @param string $name
* @param string $value
* @since 30.0.0
*/
public function __construct(
private string $name,
private string $value,
) {
}
/**
* @return string
* @since 30.0.0
*/
public function getName(): string {
return $this->name;
}
/**
* @return string
* @since 30.0.0
*/
public function getValue(): string {
return $this->value;
}
/**
* @return array{name: string, value: string}
* @since 30.0.0
*/
public function jsonSerialize(): array {
return [
'name' => $this->getName(),
'value' => $this->getValue(),
];
}
}