class MemberArchiveDataModel { MemberArchiveDataModel({ this.list, this.page, }); ArchiveListModel? list; Map? page; MemberArchiveDataModel.fromJson(Map json) { list = ArchiveListModel.fromJson(json['list']); page = json['page']; } } class ArchiveListModel { ArchiveListModel({ this.tlist, this.vlist, }); Map? tlist; List? vlist; ArchiveListModel.fromJson(Map json) { tlist = json['tlist'] != null ? Map.from(json['tlist']).map((k, v) => MapEntry(k, TListItemModel.fromJson(v))) : {}; vlist = json['vlist'] .map((e) => VListItemModel.fromJson(e)) .toList(); } } class TListItemModel { TListItemModel({ this.tid, this.count, this.name, }); int? tid; int? count; String? name; TListItemModel.fromJson(Map json) { tid = json['tid']; count = json['count']; name = json['name']; } } class VListItemModel { VListItemModel({ this.comment, this.typeid, this.play, this.pic, this.subtitle, this.description, this.copyright, this.title, this.review, this.author, this.mid, this.created, this.pubdate, this.length, this.duration, this.videoReview, this.aid, this.bvid, this.cid, this.hideClick, this.isChargingSrc, this.rcmdReason, this.owner, }); int? comment; int? typeid; int? play; String? pic; String? subtitle; String? description; String? copyright; String? title; int? review; String? author; int? mid; int? created; int? pubdate; String? length; String? duration; int? videoReview; int? aid; String? bvid; int? cid; bool? hideClick; bool? isChargingSrc; Stat? stat; String? rcmdReason; Owner? owner; VListItemModel.fromJson(Map json) { comment = json['comment']; typeid = json['typeid']; play = json['play']; pic = json['pic']; subtitle = json['subtitle']; description = json['description']; copyright = json['copyright']; title = json['title']; review = json['review']; author = json['author']; mid = json['mid']; created = json['created']; pubdate = json['created']; length = json['length']; duration = json['length']; videoReview = json['video_review']; aid = json['aid']; bvid = json['bvid']; cid = null; hideClick = json['hide_click']; isChargingSrc = json['is_charging_arc']; stat = Stat.fromJson(json); rcmdReason = null; owner = Owner.fromJson(json); } } class Stat { Stat({ this.view, this.danmaku, }); int? view; int? danmaku; Stat.fromJson(Map json) { view = json["play"]; danmaku = json['video_review']; } } class Owner { Owner({ this.mid, this.name, this.face, }); int? mid; String? name; String? face; Owner.fromJson(Map json) { mid = json["mid"]; name = json["author"]; face = ''; } }