|
|
|
|
@ -1,69 +1,69 @@
|
|
|
|
|
import 'dart:convert';
|
|
|
|
|
|
|
|
|
|
class GetMenuEntriesList {
|
|
|
|
|
int? lvl;
|
|
|
|
|
String? menUEntryType;
|
|
|
|
|
String? prompt;
|
|
|
|
|
String? menUName;
|
|
|
|
|
dynamic parenTMenuName;
|
|
|
|
|
int? entrYSequence;
|
|
|
|
|
dynamic functioNName;
|
|
|
|
|
dynamic requesTType;
|
|
|
|
|
dynamic adDButton;
|
|
|
|
|
dynamic updatEButton;
|
|
|
|
|
dynamic deletEButton;
|
|
|
|
|
String? icon;
|
|
|
|
|
dynamic attachmenTRequired;
|
|
|
|
|
|
|
|
|
|
GetMenuEntriesList({
|
|
|
|
|
this.addButton,
|
|
|
|
|
this.deleteButton,
|
|
|
|
|
this.entrySequence,
|
|
|
|
|
this.functionName,
|
|
|
|
|
this.icon,
|
|
|
|
|
this.lvl,
|
|
|
|
|
this.menuEntryType,
|
|
|
|
|
this.menuName,
|
|
|
|
|
this.parentMenuName,
|
|
|
|
|
this.menUEntryType,
|
|
|
|
|
this.prompt,
|
|
|
|
|
this.requestType,
|
|
|
|
|
this.updateButton,
|
|
|
|
|
this.attachmenTRequired
|
|
|
|
|
this.menUName,
|
|
|
|
|
this.parenTMenuName,
|
|
|
|
|
this.entrYSequence,
|
|
|
|
|
this.functioNName,
|
|
|
|
|
this.requesTType,
|
|
|
|
|
this.adDButton,
|
|
|
|
|
this.updatEButton,
|
|
|
|
|
this.deletEButton,
|
|
|
|
|
this.icon,
|
|
|
|
|
this.attachmenTRequired,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
String? addButton;
|
|
|
|
|
String? deleteButton;
|
|
|
|
|
int? entrySequence;
|
|
|
|
|
String? functionName;
|
|
|
|
|
String? icon;
|
|
|
|
|
int? lvl;
|
|
|
|
|
String? menuEntryType;
|
|
|
|
|
String? menuName;
|
|
|
|
|
String? parentMenuName;
|
|
|
|
|
String? prompt;
|
|
|
|
|
String? requestType;
|
|
|
|
|
String? updateButton;
|
|
|
|
|
dynamic attachmenTRequired;
|
|
|
|
|
factory GetMenuEntriesList.fromRawJson(String str) => GetMenuEntriesList.fromJson(json.decode(str));
|
|
|
|
|
|
|
|
|
|
String toRawJson() => json.encode(toJson());
|
|
|
|
|
|
|
|
|
|
factory GetMenuEntriesList.fromJson(Map<String, dynamic> json) => GetMenuEntriesList(
|
|
|
|
|
addButton: json["adDButton"] == null ? null : json["adDButton"],
|
|
|
|
|
deleteButton: json["deletEButton"] == null ? null : json["deletEButton"],
|
|
|
|
|
entrySequence: json["entrYSequence"] == null ? null : json["entrYSequence"],
|
|
|
|
|
functionName: json["functioNName"] == null ? null : json["functioNName"],
|
|
|
|
|
icon: json["icon"] == null ? null : json["icon"],
|
|
|
|
|
lvl: json["lvl"] == null ? null : json["lvl"],
|
|
|
|
|
menuEntryType: json["menU_ENTRY_TYPE"] == null ? null : json["menU_ENTRY_TYPE"],
|
|
|
|
|
menuName: json["menUName"] == null ? null : json["menUName"],
|
|
|
|
|
parentMenuName: json["parenTMenuName"] == null ? null : json["parenTMenuName"],
|
|
|
|
|
prompt: json["prompt"] == null ? null : json["prompt"],
|
|
|
|
|
requestType: json["requesTType"] == null ? null : json["requesTType"],
|
|
|
|
|
updateButton: json["updatEButton"] == null ? null :json["updatEButton"],
|
|
|
|
|
lvl: json["lvl"],
|
|
|
|
|
menUEntryType: json["menU_ENTRY_TYPE"],
|
|
|
|
|
prompt: json["prompt"],
|
|
|
|
|
menUName: json["menU_NAME"],
|
|
|
|
|
parenTMenuName: json["parenT_MENU_NAME"],
|
|
|
|
|
entrYSequence: json["entrY_SEQUENCE"],
|
|
|
|
|
functioNName: json["functioN_NAME"],
|
|
|
|
|
requesTType: json["requesT_TYPE"],
|
|
|
|
|
adDButton: json["adD_BUTTON"],
|
|
|
|
|
updatEButton: json["updatE_BUTTON"],
|
|
|
|
|
deletEButton: json["deletE_BUTTON"],
|
|
|
|
|
icon: json["icon"],
|
|
|
|
|
attachmenTRequired: json["attachmenT_REQUIRED"],
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
Map<String, dynamic> toJson() => {
|
|
|
|
|
"adDButton": addButton == null ? null :addButton,
|
|
|
|
|
"deletEButton": deleteButton == null ? null : deleteButton,
|
|
|
|
|
"entrYSequence": entrySequence == null ? null : entrySequence,
|
|
|
|
|
"functioNName": functionName == null ? null : functionName,
|
|
|
|
|
"icon": icon == null ? null : icon,
|
|
|
|
|
"lvl": lvl == null ? null : lvl,
|
|
|
|
|
"menU_ENTRY_TYPE": menuEntryType == null ? null : menuEntryType,
|
|
|
|
|
"menUName": menuName == null ? null : menuName,
|
|
|
|
|
"parenTMenuName": parentMenuName == null ? null : parentMenuName,
|
|
|
|
|
"prompt": prompt == null ? null : prompt,
|
|
|
|
|
"requesTType": requestType == null ? null : requestType,
|
|
|
|
|
"updatEButton": updateButton == null ? null : updateButton,
|
|
|
|
|
"lvl": lvl,
|
|
|
|
|
"menU_ENTRY_TYPE": menUEntryType,
|
|
|
|
|
"prompt": prompt,
|
|
|
|
|
"menU_NAME": menUName,
|
|
|
|
|
"parenT_MENU_NAME": parenTMenuName,
|
|
|
|
|
"entrY_SEQUENCE": entrYSequence,
|
|
|
|
|
"functioN_NAME": functioNName,
|
|
|
|
|
"requesT_TYPE": requesTType,
|
|
|
|
|
"adD_BUTTON": adDButton,
|
|
|
|
|
"updatE_BUTTON": updatEButton,
|
|
|
|
|
"deletE_BUTTON": deletEButton,
|
|
|
|
|
"icon": icon,
|
|
|
|
|
"attachmenT_REQUIRED": attachmenTRequired,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|