HummingBirdAnimeClient/src/Types/MangaListItemDetail.php

63 lines
985 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
*
2019-12-03 15:17:25 -05:00
* PHP version 7.2
2018-08-08 13:05:38 -04:00
*
* @package HummingbirdAnimeClient
* @author Timothy J. Warren <tim@timshomepage.net>
2019-12-06 09:16:35 -05:00
* @copyright 2015 - 2019 Timothy J. Warren
2018-08-08 13:05:38 -04:00
* @license http://www.opensource.org/licenses/mit-license.html MIT License
2019-12-06 09:16:35 -05:00
* @version 4.2
2018-08-08 13:05:38 -04:00
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
*/
namespace Aviat\AnimeClient\Types;
/**
* Type representing the manga represented by the list item
*/
final class MangaListItemDetail extends AbstractType {
/**
* @var array
*/
2018-08-08 13:05:38 -04:00
public $genres;
/**
* @var string
*/
2018-08-08 13:05:38 -04:00
public $id;
/**
* @var string
*/
2018-08-08 13:05:38 -04:00
public $image;
/**
* @var string
*/
2018-08-08 13:05:38 -04:00
public $slug;
/**
* @var string
*/
2018-08-08 13:05:38 -04:00
public $title;
/**
* @var array
*/
2018-08-08 13:05:38 -04:00
public $titles;
/**
* @var string
*/
2018-08-08 13:05:38 -04:00
public $type;
/**
* @var string
*/
2018-08-08 13:05:38 -04:00
public $url;
}