HummingBirdAnimeClient/src/AnimeClient/Types/FormItemData.php

44 lines
963 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
*
2021-02-04 11:57:01 -05:00
* PHP version 8
2018-08-08 13:05:38 -04:00
*
* @package HummingbirdAnimeClient
* @author Timothy J. Warren <tim@timshomepage.net>
2021-01-13 01:52:03 -05:00
* @copyright 2015 - 2021 Timothy J. Warren
2018-08-08 13:05:38 -04:00
* @license http://www.opensource.org/licenses/mit-license.html MIT License
2020-12-10 17:06:50 -05:00
* @version 5.2
2018-08-08 13:05:38 -04:00
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
*/
namespace Aviat\AnimeClient\Types;
/**
2018-09-27 16:45:12 -04:00
* Type representing a Media object for editing/syncing
2018-08-08 13:05:38 -04:00
*/
2018-09-27 16:45:12 -04:00
class FormItemData extends AbstractType {
public ?string $notes = null;
public ?bool $private = FALSE;
2021-04-21 19:35:22 -04:00
public ?int $progress = NULL;
public ?int $rating = null;
public ?int $ratingTwenty = NULL;
public string|int $reconsumeCount;
2020-04-28 12:24:12 -04:00
public bool $reconsuming = FALSE;
public string $status;
2019-12-09 14:34:23 -05:00
/**
* W3C Format Date string
*/
public ?string $updatedAt = null;
2018-08-08 13:05:38 -04:00
}