$NewSongDataPrivilegeFromJson function
Implementation
NewSongDataPrivilege $NewSongDataPrivilegeFromJson(Map<String, dynamic> json) {
final NewSongDataPrivilege newSongDataPrivilege = NewSongDataPrivilege();
final int? id = jsonConvert.convert<int>(json['id']);
if (id != null) {
newSongDataPrivilege.id = id;
}
final int? fee = jsonConvert.convert<int>(json['fee']);
if (fee != null) {
newSongDataPrivilege.fee = fee;
}
final int? payed = jsonConvert.convert<int>(json['payed']);
if (payed != null) {
newSongDataPrivilege.payed = payed;
}
final int? st = jsonConvert.convert<int>(json['st']);
if (st != null) {
newSongDataPrivilege.st = st;
}
final int? pl = jsonConvert.convert<int>(json['pl']);
if (pl != null) {
newSongDataPrivilege.pl = pl;
}
final int? dl = jsonConvert.convert<int>(json['dl']);
if (dl != null) {
newSongDataPrivilege.dl = dl;
}
final int? sp = jsonConvert.convert<int>(json['sp']);
if (sp != null) {
newSongDataPrivilege.sp = sp;
}
final int? cp = jsonConvert.convert<int>(json['cp']);
if (cp != null) {
newSongDataPrivilege.cp = cp;
}
final int? subp = jsonConvert.convert<int>(json['subp']);
if (subp != null) {
newSongDataPrivilege.subp = subp;
}
final bool? cs = jsonConvert.convert<bool>(json['cs']);
if (cs != null) {
newSongDataPrivilege.cs = cs;
}
final int? maxbr = jsonConvert.convert<int>(json['maxbr']);
if (maxbr != null) {
newSongDataPrivilege.maxbr = maxbr;
}
final int? fl = jsonConvert.convert<int>(json['fl']);
if (fl != null) {
newSongDataPrivilege.fl = fl;
}
final bool? toast = jsonConvert.convert<bool>(json['toast']);
if (toast != null) {
newSongDataPrivilege.toast = toast;
}
final int? flag = jsonConvert.convert<int>(json['flag']);
if (flag != null) {
newSongDataPrivilege.flag = flag;
}
final bool? preSell = jsonConvert.convert<bool>(json['preSell']);
if (preSell != null) {
newSongDataPrivilege.preSell = preSell;
}
final int? playMaxbr = jsonConvert.convert<int>(json['playMaxbr']);
if (playMaxbr != null) {
newSongDataPrivilege.playMaxbr = playMaxbr;
}
final int? downloadMaxbr = jsonConvert.convert<int>(json['downloadMaxbr']);
if (downloadMaxbr != null) {
newSongDataPrivilege.downloadMaxbr = downloadMaxbr;
}
final String? maxBrLevel = jsonConvert.convert<String>(json['maxBrLevel']);
if (maxBrLevel != null) {
newSongDataPrivilege.maxBrLevel = maxBrLevel;
}
final String? playMaxBrLevel = jsonConvert.convert<String>(json['playMaxBrLevel']);
if (playMaxBrLevel != null) {
newSongDataPrivilege.playMaxBrLevel = playMaxBrLevel;
}
final String? downloadMaxBrLevel = jsonConvert.convert<String>(json['downloadMaxBrLevel']);
if (downloadMaxBrLevel != null) {
newSongDataPrivilege.downloadMaxBrLevel = downloadMaxBrLevel;
}
final String? plLevel = jsonConvert.convert<String>(json['plLevel']);
if (plLevel != null) {
newSongDataPrivilege.plLevel = plLevel;
}
final String? dlLevel = jsonConvert.convert<String>(json['dlLevel']);
if (dlLevel != null) {
newSongDataPrivilege.dlLevel = dlLevel;
}
final String? flLevel = jsonConvert.convert<String>(json['flLevel']);
if (flLevel != null) {
newSongDataPrivilege.flLevel = flLevel;
}
final NewSongDataPrivilegeFreeTrialPrivilege? freeTrialPrivilege = jsonConvert.convert<
NewSongDataPrivilegeFreeTrialPrivilege>(json['freeTrialPrivilege']);
if (freeTrialPrivilege != null) {
newSongDataPrivilege.freeTrialPrivilege = freeTrialPrivilege;
}
final int? rightSource = jsonConvert.convert<int>(json['rightSource']);
if (rightSource != null) {
newSongDataPrivilege.rightSource = rightSource;
}
final List<NewSongDataPrivilegeChargeInfoList>? chargeInfoList = (json['chargeInfoList'] as List<
dynamic>?)?.map(
(e) =>
jsonConvert.convert<NewSongDataPrivilegeChargeInfoList>(
e) as NewSongDataPrivilegeChargeInfoList).toList();
if (chargeInfoList != null) {
newSongDataPrivilege.chargeInfoList = chargeInfoList;
}
return newSongDataPrivilege;
}