HummingBirdAnimeClient/src/AnimeClient/Types/FormItemData.php

59 lines
1022 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
*
* PHP version 7.4
2018-08-08 13:05:38 -04:00
*
* @package HummingbirdAnimeClient
* @author Timothy J. Warren <tim@timshomepage.net>
2020-01-08 15:39:49 -05:00
* @copyright 2015 - 2020 Timothy J. Warren
2018-08-08 13:05:38 -04:00
* @license http://www.opensource.org/licenses/mit-license.html MIT License
2020-08-04 09:30:21 -04:00
* @version 5.1
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 {
2020-04-28 12:24:12 -04:00
public ?string $notes;
public ?bool $private = FALSE;
/**
* @var int
*/
2018-08-08 13:05:38 -04:00
public $progress;
/**
* @var int
*/
2018-08-08 13:05:38 -04:00
public $rating;
/**
* @var int
*/
2018-09-26 22:43:04 -04:00
public $ratingTwenty;
/**
2020-04-28 12:24:12 -04:00
* @var string|int
*/
2018-08-08 13:05:38 -04:00
public $reconsumeCount;
2020-04-28 12:24:12 -04:00
public bool $reconsuming = FALSE;
/**
* @var string
*/
2018-08-08 13:05:38 -04:00
public $status;
2019-12-09 14:34:23 -05:00
/**
* W3C Format Date string
*/
2020-04-28 12:24:12 -04:00
public ?string $updatedAt;
2018-08-08 13:05:38 -04:00
}