2018-11-08 11:36:42 -05:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
/**
|
|
|
|
* Hummingbird Anime List Client
|
|
|
|
*
|
|
|
|
* An API client for Kitsu to manage anime and manga watch lists
|
|
|
|
*
|
2019-12-03 15:17:25 -05:00
|
|
|
* PHP version 7.2
|
2018-11-08 11:36:42 -05: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-11-08 11:36:42 -05:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
2019-12-06 09:16:35 -05:00
|
|
|
* @version 4.2
|
2018-11-08 11:36:42 -05:00
|
|
|
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Aviat\AnimeClient\Types;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Type representing a Kitsu user for display
|
|
|
|
*/
|
|
|
|
final class User extends AbstractType {
|
2019-12-09 13:40:54 -05:00
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
2018-11-08 11:36:42 -05:00
|
|
|
public $about;
|
2019-12-09 13:40:54 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
2018-11-08 11:36:42 -05:00
|
|
|
public $avatar;
|
2019-12-09 13:40:54 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
2018-11-08 11:36:42 -05:00
|
|
|
public $favorites;
|
2019-12-09 13:40:54 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
2018-11-08 11:36:42 -05:00
|
|
|
public $location;
|
2019-12-09 13:40:54 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
2018-11-08 11:36:42 -05:00
|
|
|
public $name;
|
2019-12-09 13:40:54 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
2018-11-08 11:36:42 -05:00
|
|
|
public $slug;
|
2019-12-09 13:40:54 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
2018-11-08 11:36:42 -05:00
|
|
|
public $stats;
|
2019-12-09 13:40:54 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
2018-11-08 11:36:42 -05:00
|
|
|
public $waifu;
|
2019-12-09 13:40:54 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
2018-11-08 11:36:42 -05:00
|
|
|
public $website;
|
|
|
|
}
|