class tourExpensesAddViewResponse { List? daAmount; List? tourType; List? travelType; String? error; String? message; int? sessionExists; tourExpensesAddViewResponse( {this.daAmount, this.tourType, this.travelType, this.error, this.message, this.sessionExists}); tourExpensesAddViewResponse.fromJson(Map json) { daAmount = json['da_amount'].cast(); tourType = json['tour_type'].cast(); travelType = json['travel_type'].cast(); error = json['error']; message = json['message']; sessionExists = json['session_exists']; } Map toJson() { final Map data = new Map(); data['da_amount'] = this.daAmount; data['tour_type'] = this.tourType; data['travel_type'] = this.travelType; data['error'] = this.error; data['message'] = this.message; data['session_exists'] = this.sessionExists; return data; } }