HummingBirdAnimeClient/src/AnimeClient/API/Anilist/Types/MediaListEntry.php

38 lines
809 B
PHP
Raw Normal View History

<?php declare(strict_types=1);
/**
* Hummingbird Anime List Client
*
* An API client for Kitsu to manage anime and manga watch lists
*
2021-02-04 11:57:01 -05:00
* PHP version 8
*
* @package HummingbirdAnimeClient
* @author Timothy J. Warren <tim@timshomepage.net>
2021-01-13 01:52:03 -05:00
* @copyright 2015 - 2021 Timothy J. Warren
* @license http://www.opensource.org/licenses/mit-license.html MIT License
2020-12-10 17:06:50 -05:00
* @version 5.2
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
*/
namespace Aviat\AnimeClient\API\Anilist\Types;
use Aviat\AnimeClient\Types\AbstractType;
class MediaListEntry extends AbstractType {
/**
2020-08-17 10:23:32 -04:00
* @var int|string
*/
public $id;
2020-08-17 10:23:32 -04:00
public ?string $notes;
2020-08-17 10:23:32 -04:00
public ?bool $private;
2020-08-17 10:23:32 -04:00
public int $progress;
2020-08-17 10:23:32 -04:00
public ?int $repeat;
2020-08-17 10:23:32 -04:00
public string $status;
2020-08-17 10:23:32 -04:00
public ?int $score;
}