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.
		
		
		
		
		
			
		
			
				
	
	
		
			19 lines
		
	
	
		
			526 B
		
	
	
	
		
			Dart
		
	
			
		
		
	
	
			19 lines
		
	
	
		
			526 B
		
	
	
	
		
			Dart
		
	
| class StartTermApprovalProcessList {
 | |
|   String? pRETURNMSG;
 | |
|   String? pRETURNSTATUS;
 | |
| 
 | |
|   StartTermApprovalProcessList({this.pRETURNMSG, this.pRETURNSTATUS});
 | |
| 
 | |
|   StartTermApprovalProcessList.fromJson(Map<String, dynamic> json) {
 | |
|     pRETURNMSG = json['P_RETURN_MSG'];
 | |
|     pRETURNSTATUS = json['P_RETURN_STATUS'];
 | |
|   }
 | |
| 
 | |
|   Map<String, dynamic> toJson() {
 | |
|     Map<String, dynamic> data = new Map<String, dynamic>();
 | |
|     data['P_RETURN_MSG'] = this.pRETURNMSG;
 | |
|     data['P_RETURN_STATUS'] = this.pRETURNSTATUS;
 | |
|     return data;
 | |
|   }
 | |
| }
 |