HummingBirdAnimeClient/src/AnimeClient/Types/MangaListItemDetail.php
Timothy J. Warren 496ba418c9
Some checks failed
timw4mail/HummingBirdAnimeClient/pipeline/head There was a failure building this commit
Remove a lot of redundant PHPDoc properties
2022-03-03 13:25:10 -05:00

39 lines
844 B
PHP

<?php declare(strict_types=1);
/**
* Hummingbird Anime List Client
*
* An API client for Kitsu to manage anime and manga watch lists
*
* PHP version 8
*
* @package HummingbirdAnimeClient
* @author Timothy J. Warren <tim@timshomepage.net>
* @copyright 2015 - 2021 Timothy J. Warren
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @version 5.2
* @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 {
public array $genres = [];
public string $id;
public string $image;
public string $slug;
public string $title;
public array $titles;
public ?string $type = null;
public string $url;
}