Files
PiliPlus/lib/models_new/reply/upper.dart
bggRGjQaUbCoE 418a1e8d39 reformat
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-07-23 16:47:11 +08:00

124 lines
3.3 KiB
Dart

import 'package:PiliPlus/models_new/reply/content.dart';
import 'package:PiliPlus/models_new/reply/folder.dart';
import 'package:PiliPlus/models_new/reply/member.dart';
import 'package:PiliPlus/models_new/reply/reply.dart';
import 'package:PiliPlus/models_new/reply/reply_control.dart';
import 'package:PiliPlus/models_new/reply/up_action.dart';
class Upper {
int? rpid;
int? oid;
int? type;
int? mid;
int? root;
int? parent;
int? dialog;
int? count;
int? rcount;
int? state;
int? fansgrade;
int? attr;
int? ctime;
String? midStr;
String? oidStr;
String? rpidStr;
String? rootStr;
String? parentStr;
String? dialogStr;
int? like;
int? action;
ReplyMember? member;
ReplyContent? content;
List<ReplyItemModel>? replies;
int? assist;
UpAction? upAction;
bool? invisible;
ReplyControl? replyControl;
ReplyFolder? folder;
String? dynamicIdStr;
String? noteCvidStr;
String? trackInfo;
Upper({
this.rpid,
this.oid,
this.type,
this.mid,
this.root,
this.parent,
this.dialog,
this.count,
this.rcount,
this.state,
this.fansgrade,
this.attr,
this.ctime,
this.midStr,
this.oidStr,
this.rpidStr,
this.rootStr,
this.parentStr,
this.dialogStr,
this.like,
this.action,
this.member,
this.content,
this.replies,
this.assist,
this.upAction,
this.invisible,
this.replyControl,
this.folder,
this.dynamicIdStr,
this.noteCvidStr,
this.trackInfo,
});
factory Upper.fromJson(Map<String, dynamic> json) => Upper(
rpid: json['rpid'] as int?,
oid: json['oid'] as int?,
type: json['type'] as int?,
mid: json['mid'] as int?,
root: json['root'] as int?,
parent: json['parent'] as int?,
dialog: json['dialog'] as int?,
count: json['count'] as int?,
rcount: json['rcount'] as int?,
state: json['state'] as int?,
fansgrade: json['fansgrade'] as int?,
attr: json['attr'] as int?,
ctime: json['ctime'] as int?,
midStr: json['mid_str'] as String?,
oidStr: json['oid_str'] as String?,
rpidStr: json['rpid_str'] as String?,
rootStr: json['root_str'] as String?,
parentStr: json['parent_str'] as String?,
dialogStr: json['dialog_str'] as String?,
like: json['like'] as int?,
action: json['action'] as int?,
member: json['member'] == null
? null
: ReplyMember.fromJson(json['member'] as Map<String, dynamic>),
content: json['content'] == null
? null
: ReplyContent.fromJson(json['content'] as Map<String, dynamic>),
replies: (json['replies'] as List<dynamic>?)
?.map((e) => ReplyItemModel.fromJson(e as Map<String, dynamic>))
.toList(),
assist: json['assist'] as int?,
upAction: json['up_action'] == null
? null
: UpAction.fromJson(json['up_action'] as Map<String, dynamic>),
invisible: json['invisible'] as bool?,
replyControl: json['reply_control'] == null
? null
: ReplyControl.fromJson(json['reply_control'] as Map<String, dynamic>),
folder: json['folder'] == null
? null
: ReplyFolder.fromJson(json['folder'] as Map<String, dynamic>),
dynamicIdStr: json['dynamic_id_str'] as String?,
noteCvidStr: json['note_cvid_str'] as String?,
trackInfo: json['track_info'] as String?,
);
}