2018-08-08 10:12:45 -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 10:12:45 -04:00
|
|
|
*
|
2018-10-01 11:35:51 -04:00
|
|
|
* PHP version 7.1
|
2018-08-08 10:12:45 -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 10:12:45 -04:00
|
|
|
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Aviat\AnimeClient\Types;
|
|
|
|
|
|
|
|
/**
|
2018-11-08 11:36:42 -05:00
|
|
|
* Type representing an anime within a watch list
|
2018-08-08 10:12:45 -04:00
|
|
|
*/
|
2018-11-08 11:36:42 -05:00
|
|
|
class Anime extends AbstractType {
|
2018-08-08 10:12:45 -04:00
|
|
|
public $age_rating;
|
|
|
|
public $age_rating_guide;
|
|
|
|
public $cover_image;
|
|
|
|
public $episode_count;
|
|
|
|
public $episode_length;
|
|
|
|
public $genres;
|
|
|
|
public $id;
|
|
|
|
public $included;
|
|
|
|
public $show_type;
|
|
|
|
public $slug;
|
|
|
|
public $status;
|
|
|
|
public $streaming_links;
|
|
|
|
public $synopsis;
|
|
|
|
public $title;
|
|
|
|
public $titles;
|
|
|
|
public $trailer_id;
|
|
|
|
public $url;
|
|
|
|
}
|