You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
684 B
Dart
22 lines
684 B
Dart
class CheckListNotification {
|
|
String? pGETCHECKLISTNTFBODY;
|
|
dynamic? pINFORMATION;
|
|
dynamic? pQUESTION;
|
|
|
|
CheckListNotification(
|
|
{this.pGETCHECKLISTNTFBODY, this.pINFORMATION, this.pQUESTION});
|
|
|
|
CheckListNotification.fromJson(Map<String, dynamic> json) {
|
|
pGETCHECKLISTNTFBODY = json['P_GET_CHECKLIST_NTF_BODY'];
|
|
pINFORMATION = json['P_INFORMATION'];
|
|
pQUESTION = json['P_QUESTION'];
|
|
}
|
|
|
|
Map<String, dynamic> toJson() {
|
|
Map<String, dynamic> data = new Map<String, dynamic>();
|
|
data['P_GET_CHECKLIST_NTF_BODY'] = this.pGETCHECKLISTNTFBODY;
|
|
data['P_INFORMATION'] = this.pINFORMATION;
|
|
data['P_QUESTION'] = this.pQUESTION;
|
|
return data;
|
|
}
|
|
} |