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.
		
		
		
		
		
			
		
			
				
	
	
		
			21 lines
		
	
	
		
			537 B
		
	
	
	
		
			Dart
		
	
			
		
		
	
	
			21 lines
		
	
	
		
			537 B
		
	
	
	
		
			Dart
		
	
class AllowedActions {
 | 
						|
  String? action;
 | 
						|
  String? details;
 | 
						|
  bool? isAvailable;
 | 
						|
 | 
						|
  AllowedActions({this.action, this.details, this.isAvailable});
 | 
						|
 | 
						|
  AllowedActions.fromJson(Map<String, dynamic> json) {
 | 
						|
    action = json['Action'];
 | 
						|
    details = json['Details'];
 | 
						|
    isAvailable = json['IsAvailable'];
 | 
						|
  }
 | 
						|
 | 
						|
  Map<String, dynamic> toJson() {
 | 
						|
    Map<String, dynamic> data = new Map<String, dynamic>();
 | 
						|
    data['Action'] = this.action;
 | 
						|
    data['Details'] = this.details;
 | 
						|
    data['IsAvailable'] = this.isAvailable;
 | 
						|
    return data;
 | 
						|
  }
 | 
						|
} |