/** * 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 { LegacyBlog } from './legacyBlog'; import { LegacyEpisode } from './legacyEpisode'; import { LegacySubjectMediumAllOfCrt } from './legacySubjectMediumAllOfCrt'; import { LegacySubjectMediumAllOfStaff } from './legacySubjectMediumAllOfStaff'; import { LegacySubjectSmallCollection } from './legacySubjectSmallCollection'; import { LegacySubjectSmallImages } from './legacySubjectSmallImages'; import { LegacySubjectSmallRating } from './legacySubjectSmallRating'; import { LegacyTopic } from './legacyTopic'; export interface LegacySubjectLarge { /** * 条目 ID */ id?: number; /** * 条目地址 */ url?: string; /** * 条目类型 - `1` 为 书籍 - `2` 为 动画 - `3` 为 音乐 - `4` 为 游戏 - `6` 为 三次元 没有 `5` */ type?: LegacySubjectLarge.TypeEnum; /** * 条目名称 */ name?: string; /** * 条目中文名称 */ name_cn?: string; /** * 剧情简介 */ summary?: string; /** * 放送开始日期 */ air_date?: string; /** * 放送星期 */ air_weekday?: number; images?: LegacySubjectSmallImages; /** * 章节列表 */ eps?: Array; /** * 话数 */ eps_count?: number; rating?: LegacySubjectSmallRating; /** * 排名 */ rank?: number; collection?: LegacySubjectSmallCollection; /** * 角色信息 */ crt?: Array; /** * 制作人员信息 */ staff?: Array; /** * 讨论版 */ topic?: Array; /** * 评论日志 */ blog?: Array; } export declare namespace LegacySubjectLarge { type TypeEnum = 1 | 2 | 3 | 4 | 6; const TypeEnum: { Book: TypeEnum; Anime: TypeEnum; Music: TypeEnum; Game: TypeEnum; Real: TypeEnum; }; }