mirror of
https://github.com/friendica/friendica
synced 2025-04-28 01:10:12 +00:00
20 lines
338 B
PHP
20 lines
338 B
PHP
<?php
|
|
|
|
namespace Friendica\Api\Entity\Mastodon;
|
|
|
|
use Friendica\Api\BaseEntity;
|
|
|
|
/**
|
|
* Class Field
|
|
*
|
|
* @see https://docs.joinmastodon.org/api/entities/#field
|
|
*/
|
|
class Field extends BaseEntity
|
|
{
|
|
/** @var string */
|
|
protected $name;
|
|
/** @var string (HTML) */
|
|
protected $value;
|
|
/** @var string (Datetime)*/
|
|
protected $verified_at;
|
|
}
|