mirror of
https://github.com/friendica/friendica
synced 2025-04-26 16:30:12 +00:00
Move Mastodon API entities to src/Object
This commit is contained in:
parent
74a25eb670
commit
0de8e4db08
13 changed files with 24 additions and 25 deletions
20
src/Object/Api/Mastodon/Field.php
Normal file
20
src/Object/Api/Mastodon/Field.php
Normal file
|
@ -0,0 +1,20 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Object\Api\Mastodon;
|
||||
|
||||
use Friendica\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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue