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.
mohemm-flutter-app/lib/models/my_requests/get_ccp_output_model.dart

22 lines
627 B
Dart

class GetCCPOutputModel {
String? pOUTPUTFILE;
String? pRETURNMSG;
String? pRETURNSTATUS;
GetCCPOutputModel({this.pOUTPUTFILE, this.pRETURNMSG, this.pRETURNSTATUS});
GetCCPOutputModel.fromJson(Map<String, dynamic> json) {
pOUTPUTFILE = json['P_OUTPUT_FILE'];
pRETURNMSG = json['P_RETURN_MSG'];
pRETURNSTATUS = json['P_RETURN_STATUS'];
}
Map<String, dynamic> toJson() {
final Map<String, dynamic> data = new Map<String, dynamic>();
data['P_OUTPUT_FILE'] = this.pOUTPUTFILE;
data['P_RETURN_MSG'] = this.pRETURNMSG;
data['P_RETURN_STATUS'] = this.pRETURNSTATUS;
return data;
}
}