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.
		
		
		
		
		
			
		
			
				
	
	
		
			23 lines
		
	
	
		
			673 B
		
	
	
	
		
			Dart
		
	
			
		
		
	
	
			23 lines
		
	
	
		
			673 B
		
	
	
	
		
			Dart
		
	
class GetPendingTransactionsFunctions {
 | 
						|
  int? fUNCTIONID;
 | 
						|
  String? fUNCTIONNAME;
 | 
						|
  String? fUNCTIONPROMPT;
 | 
						|
 | 
						|
  GetPendingTransactionsFunctions(
 | 
						|
      {this.fUNCTIONID, this.fUNCTIONNAME, this.fUNCTIONPROMPT});
 | 
						|
 | 
						|
  GetPendingTransactionsFunctions.fromJson(Map<String, dynamic> json) {
 | 
						|
    fUNCTIONID = json['FUNCTION_ID'];
 | 
						|
    fUNCTIONNAME = json['FUNCTION_NAME'];
 | 
						|
    fUNCTIONPROMPT = json['FUNCTION_PROMPT'];
 | 
						|
  }
 | 
						|
 | 
						|
  Map<String, dynamic> toJson() {
 | 
						|
    Map<String, dynamic> data = new Map<String, dynamic>();
 | 
						|
    data['FUNCTION_ID'] = this.fUNCTIONID;
 | 
						|
    data['FUNCTION_NAME'] = this.fUNCTIONNAME;
 | 
						|
    data['FUNCTION_PROMPT'] = this.fUNCTIONPROMPT;
 | 
						|
    return data;
 | 
						|
  }
 | 
						|
}
 |