2021-04-02 17:20:02 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @copyright 2021 Podlibre
|
|
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
|
|
* @link https://castopod.org/
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace ActivityPub\Entities;
|
|
|
|
|
2021-05-06 14:00:48 +00:00
|
|
|
use CodeIgniter\Entity\Entity;
|
2021-04-02 17:20:02 +00:00
|
|
|
|
|
|
|
class PreviewCard extends Entity
|
|
|
|
{
|
2021-05-06 14:00:48 +00:00
|
|
|
/**
|
|
|
|
* @var array<string, string>
|
|
|
|
*/
|
2021-04-02 17:20:02 +00:00
|
|
|
protected $casts = [
|
|
|
|
'id' => 'integer',
|
|
|
|
'note_id' => 'string',
|
|
|
|
'url' => 'string',
|
|
|
|
'title' => 'string',
|
|
|
|
'description' => 'string',
|
|
|
|
'type' => 'string',
|
|
|
|
'author_name' => '?string',
|
|
|
|
'author_url' => '?string',
|
|
|
|
'provider_name' => '?string',
|
|
|
|
'provider_url' => '?string',
|
|
|
|
'image' => '?string',
|
|
|
|
'html' => '?string',
|
|
|
|
];
|
|
|
|
}
|