mirror of
https://github.com/nextcloud/spreed.git
synced 2025-12-18 05:20:50 +01:00
54 lines
1.4 KiB
PHP
54 lines
1.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
/**
|
|
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\Talk\Model;
|
|
|
|
use OCA\Talk\ResponseDefinitions;
|
|
use OCP\AppFramework\Db\Entity;
|
|
use OCP\DB\Types;
|
|
|
|
/**
|
|
* @method void setUserId(string $userId)
|
|
* @method string getUserId()
|
|
* @method void setToken(string $token)
|
|
* @method string getToken()
|
|
* @method void setMessageId(int $messageId)
|
|
* @method int getMessageId()
|
|
* @method void setDateTime(\DateTime $dateTime)
|
|
* @method \DateTime getDateTime()
|
|
*
|
|
* @psalm-import-type TalkChatReminder from ResponseDefinitions
|
|
*/
|
|
class Reminder extends Entity implements \JsonSerializable {
|
|
public const NUM_UPCOMING_REMINDERS = 10;
|
|
|
|
protected string $userId = '';
|
|
protected string $token = '';
|
|
protected int $messageId = 0;
|
|
protected ?\DateTime $dateTime = null;
|
|
|
|
public function __construct() {
|
|
$this->addType('userId', Types::STRING);
|
|
$this->addType('token', Types::STRING);
|
|
$this->addType('messageId', Types::BIGINT);
|
|
$this->addType('dateTime', Types::DATETIME);
|
|
}
|
|
|
|
/**
|
|
* @return TalkChatReminder
|
|
*/
|
|
#[\Override]
|
|
public function jsonSerialize(): array {
|
|
return [
|
|
'userId' => $this->getUserId(),
|
|
'token' => $this->getToken(),
|
|
'messageId' => $this->getMessageId(),
|
|
'timestamp' => $this->getDateTime()->getTimestamp(),
|
|
];
|
|
}
|
|
}
|