import 'dart:convert'; class GetOpenNotifications { String? iteMType; String? iteMTypeDisplayName; int? opeNNtfNumber; GetOpenNotifications({ this.iteMType, this.iteMTypeDisplayName, this.opeNNtfNumber, }); factory GetOpenNotifications.fromRawJson(String str) => GetOpenNotifications.fromJson(json.decode(str)); String toRawJson() => json.encode(toJson()); factory GetOpenNotifications.fromJson(Map json) => GetOpenNotifications( iteMType: json["iteM_TYPE"], iteMTypeDisplayName: json["iteM_TYPE_DISPLAY_NAME"], opeNNtfNumber: json["opeN_NTF_NUMBER"], ); Map toJson() => { "iteM_TYPE": iteMType, "iteM_TYPE_DISPLAY_NAME": iteMTypeDisplayName, "opeN_NTF_NUMBER": opeNNtfNumber, }; }