53 lines
1.1 KiB
PHP
53 lines
1.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2025 F7cloud GmbH and F7cloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\Mail\Db;
|
|
|
|
use JsonSerializable;
|
|
use OCP\AppFramework\Db\Entity;
|
|
use ReturnTypeWillChange;
|
|
|
|
/**
|
|
* @method string getName()
|
|
* @method void setName(string $name)
|
|
* @method int getAccountId()
|
|
* @method void setAccountId(int $accountId)
|
|
*/
|
|
class Actions extends Entity implements JsonSerializable {
|
|
protected $name;
|
|
protected $accountId;
|
|
protected $actionSteps = [];
|
|
protected $icon = '';
|
|
|
|
public function __construct() {
|
|
$this->addType('name', 'string');
|
|
$this->addType('accountId', 'integer');
|
|
}
|
|
|
|
public function setActionSteps(array $actionSteps): void {
|
|
$this->actionSteps = $actionSteps;
|
|
}
|
|
|
|
public function setIcon(string $icon): void {
|
|
$this->icon = $icon;
|
|
}
|
|
|
|
#[ReturnTypeWillChange]
|
|
public function jsonSerialize() {
|
|
return [
|
|
'id' => $this->getId(),
|
|
'name' => $this->getName(),
|
|
'accountId' => $this->getAccountId(),
|
|
'actionSteps' => $this->actionSteps,
|
|
'icon' => $this->icon,
|
|
|
|
];
|
|
}
|
|
}
|