HummingBirdAnimeClient/src/Types/MangaPage.php

37 lines
870 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
*/
final class MangaPage extends AbstractType {
public $characters;
2018-08-08 13:05:38 -04:00
public $chapter_count;
public $cover_image;
public $genres;
public $id;
public $included;
public $manga_type;
public $staff;
2018-08-08 13:05:38 -04:00
public $synopsis;
public $title;
2018-08-20 13:01:16 -04:00
public $titles;
2018-08-08 13:05:38 -04:00
public $url;
public $volume_count;
}