/** * Bangumi API * 你可以在 生成一个 Access Token ## [关于 User Agent](https://github.com/bangumi/api/blob/master/docs-raw/user%20agent.md) 如果你在使用中遇到了问题,请优先使用 GitHub issue 提交问题。在 bangumi 小组发帖可能无法得到及时反馈。 * * The version of the OpenAPI document: 2026-05-2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { BloodType } from './bloodType'; import { PersonCareer } from './personCareer'; import { PersonImages } from './personImages'; import { PersonType } from './personType'; import { Stat } from './stat'; export interface PersonDetail { id: number; name: string; /** * `1`, `2`, `3` 表示 `个人`, `公司`, `组合` */ type: PersonType; career: Array; /** * object with some size of images, this object maybe `null` */ images?: PersonImages; summary: string; locked: boolean; /** * currently it\'s latest user comment time, it will be replaced by wiki modified date in the future */ last_modified: string; /** * server parsed infobox, a map from key to string or tuple null if server infobox is not valid */ infobox?: Array; /** * parsed from wiki, maybe null */ gender?: string; /** * parsed from wiki, maybe null, `1, 2, 3, 4` for `A, B, AB, O` */ blood_type?: BloodType; /** * parsed from wiki, maybe `null` */ birth_year?: number; /** * parsed from wiki, maybe `null` */ birth_mon?: number; /** * parsed from wiki, maybe `null` */ birth_day?: number; stat: Stat; } export declare namespace PersonDetail { }