25 lines
648 B
PHP
25 lines
648 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: Sebastian Krupinski <krupinski01@gmail.com>
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace KTXF\Chrono\Event;
|
|
|
|
use DateInterval;
|
|
use DateTime;
|
|
use DateTimeImmutable;
|
|
use KTXF\Json\JsonSerializableObject;
|
|
|
|
class EventNotificationObject extends JsonSerializableObject {
|
|
public string|null $identifier = null;
|
|
public EventNotificationTypes|null $Type = null;
|
|
public EventNotificationPatterns|null $Pattern = null;
|
|
public DateTime|DateTimeImmutable|null $When = null;
|
|
public EventNotificationAnchorTypes|null $Anchor = null;
|
|
public DateInterval|null $Offset = null;
|
|
}
|