class GetOpenNotificationsList { GetOpenNotificationsList({ this.itemType, this.itemTypeDisplayName, this.openNtfNumber, }); String? itemType; String? itemTypeDisplayName; int? openNtfNumber; factory GetOpenNotificationsList.fromMap(Map json) => GetOpenNotificationsList( itemType: json["iteM_TYPE"] == null ? null : json["iteM_TYPE"], itemTypeDisplayName: json["iteM_TYPE_DISPLAY_NAME"] == null ? null : json["iteM_TYPE_DISPLAY_NAME"], openNtfNumber: json["opeN_NTF_NUMBER"] == null ? null : json["opeN_NTF_NUMBER"], ); Map toMap() => { "iteM_TYPE": itemType == null ? null : itemType, "iteM_TYPE_DISPLAY_NAME": itemTypeDisplayName == null ? null : itemTypeDisplayName, "opeN_NTF_NUMBER": openNtfNumber == null ? null : openNtfNumber, }; }