HummingBirdAnimeClient/src/AnimeClient/Types/HistoryItem.php

66 lines
1.2 KiB
PHP
Raw Normal View History

2020-04-21 19:22:56 -04:00
<?php declare(strict_types=1);
/**
* Hummingbird Anime List Client
*
* An API client for Kitsu to manage anime and manga watch lists
*
* PHP version 7.4
*
* @package HummingbirdAnimeClient
* @author Timothy J. Warren <tim@timshomepage.net>
* @copyright 2015 - 2020 Timothy J. Warren
* @license http://www.opensource.org/licenses/mit-license.html MIT License
2020-08-04 09:30:21 -04:00
* @version 5.1
2020-04-21 19:22:56 -04:00
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
*/
namespace Aviat\AnimeClient\Types;
use DateTimeImmutable;
2020-04-21 19:22:56 -04:00
class HistoryItem extends AbstractType {
/**
2020-12-10 15:59:37 -05:00
* Title of the anime/manga
2020-04-21 19:22:56 -04:00
*/
public string $title = '';
/**
2020-12-10 15:59:37 -05:00
* The url of the cover image
2020-04-21 19:22:56 -04:00
*/
public string $coverImg = '';
/**
2020-12-10 15:59:37 -05:00
* The type of action done
2020-04-21 19:22:56 -04:00
*/
public string $action = '';
/**
2020-12-10 15:59:37 -05:00
* Is this item a combination of items?
2020-04-21 19:22:56 -04:00
*/
public bool $isAggregate = FALSE;
/**
2020-12-10 15:59:37 -05:00
* The kind of history event
2020-04-21 19:22:56 -04:00
*/
public string $kind = '';
/**
2020-12-10 15:59:37 -05:00
* When the item was last updated
*/
public ?DateTimeImmutable $updated = NULL;
/**
2020-12-10 15:59:37 -05:00
* Range of updated times for the aggregated item
2020-04-21 19:22:56 -04:00
*/
public array $dateRange = [];
2020-04-21 19:22:56 -04:00
2020-04-22 12:38:59 -04:00
/**
2020-12-10 15:59:37 -05:00
* Url to details page
2020-04-22 12:38:59 -04:00
*/
public string $url = '';
/**
2020-12-10 15:59:37 -05:00
* The item before transformation
*/
public array $original = [];
2020-04-21 19:22:56 -04:00
}