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.
hmg-mohemm-flutter-app/lib/models/pending_transactions/get_pending_transactions_de...

57 lines
1.8 KiB
Dart

class GetPendingTransactionsDetails {
String? cREATIONDATE;
int? fROMROWNUM;
String? iTEMKEY;
int? nOOFROWS;
String? rEQUESTTYPE;
int? rOWNUM;
int? tOROWNUM;
String? tRANSACTIONCREATEDFOR;
int? tRANSACTIONID;
String? tRANSACTIONINITIATOR;
String? uSERFUNCTIONNAME;
GetPendingTransactionsDetails(
{this.cREATIONDATE,
this.fROMROWNUM,
this.iTEMKEY,
this.nOOFROWS,
this.rEQUESTTYPE,
this.rOWNUM,
this.tOROWNUM,
this.tRANSACTIONCREATEDFOR,
this.tRANSACTIONID,
this.tRANSACTIONINITIATOR,
this.uSERFUNCTIONNAME});
GetPendingTransactionsDetails.fromJson(Map<String, dynamic> json) {
cREATIONDATE = json['CREATION_DATE'];
fROMROWNUM = json['FROM_ROW_NUM'];
iTEMKEY = json['ITEM_KEY'];
nOOFROWS = json['NO_OF_ROWS'];
rEQUESTTYPE = json['REQUEST_TYPE'];
rOWNUM = json['ROW_NUM'];
tOROWNUM = json['TO_ROW_NUM'];
tRANSACTIONCREATEDFOR = json['TRANSACTION_CREATED_FOR'];
tRANSACTIONID = json['TRANSACTION_ID'];
tRANSACTIONINITIATOR = json['TRANSACTION_INITIATOR'];
uSERFUNCTIONNAME = json['USER_FUNCTION_NAME'];
}
Map<String, dynamic> toJson() {
Map<String, dynamic> data = new Map<String, dynamic>();
data['CREATION_DATE'] = this.cREATIONDATE;
data['FROM_ROW_NUM'] = this.fROMROWNUM;
data['ITEM_KEY'] = this.iTEMKEY;
data['NO_OF_ROWS'] = this.nOOFROWS;
data['REQUEST_TYPE'] = this.rEQUESTTYPE;
data['ROW_NUM'] = this.rOWNUM;
data['TO_ROW_NUM'] = this.tOROWNUM;
data['TRANSACTION_CREATED_FOR'] = this.tRANSACTIONCREATEDFOR;
data['TRANSACTION_ID'] = this.tRANSACTIONID;
data['TRANSACTION_INITIATOR'] = this.tRANSACTIONINITIATOR;
data['USER_FUNCTION_NAME'] = this.uSERFUNCTIONNAME;
return data;
}
}