HummingBirdAnimeClient/src/Types/FormItem.php

34 lines
781 B
PHP
Raw Normal View History

2018-08-08 13:05:38 -04:00
<?php declare(strict_types=1);
/**
* Hummingbird Anime List Client
*
2018-08-22 13:48:27 -04:00
* An API client for Kitsu to manage anime and manga watch lists
2018-08-08 13:05:38 -04:00
*
2018-10-01 11:35:51 -04:00
* PHP version 7.1
2018-08-08 13:05:38 -04:00
*
* @package HummingbirdAnimeClient
* @author Timothy J. Warren <tim@timshomepage.net>
* @copyright 2015 - 2018 Timothy J. Warren
* @license http://www.opensource.org/licenses/mit-license.html MIT License
2018-10-01 11:35:51 -04:00
* @version 4.1
2018-08-08 13:05:38 -04:00
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
*/
namespace Aviat\AnimeClient\Types;
/**
* Type representing an Anime object for display
*/
2018-09-27 16:45:12 -04:00
class FormItem extends AbstractType {
2018-08-08 13:05:38 -04:00
public $id;
public $anilist_item_id;
2018-08-08 13:05:38 -04:00
public $mal_id;
public $data;
2018-09-27 16:45:12 -04:00
public function setData($value): void
{
$this->data = new FormItemData($value);
}
2018-08-08 13:05:38 -04:00
}