2026-04-25 02:09:38 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
2026-04-26 00:42:21 +02:00
|
|
|
namespace Lvl0\FediDiscover\ValueObjects;
|
2026-04-25 02:09:38 +02:00
|
|
|
|
|
|
|
|
class FediversePost
|
|
|
|
|
{
|
|
|
|
|
public function __construct(
|
|
|
|
|
public string $cursorId,
|
|
|
|
|
public string $selfUrl,
|
2026-04-26 00:42:21 +02:00
|
|
|
public ?string $body = null,
|
|
|
|
|
public ?string $title = null,
|
|
|
|
|
public ?string $publishedAt = null,
|
2026-04-25 02:09:38 +02:00
|
|
|
) {}
|
|
|
|
|
}
|