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, }; }