class MyReservedAdsRespModel { int? id; int? adsID; int? customerID; int? paymentStatus; int? reservationTimeID; double? reservationBasePrice; double? refundAmount; String? refundDate; MyReservedAdsRespModel({this.id, this.adsID, this.customerID, this.paymentStatus, this.reservationTimeID, this.reservationBasePrice, this.refundAmount, this.refundDate}); MyReservedAdsRespModel.fromJson(Map json) { id = json['id']; adsID = json['adsID']; customerID = json['customerID']; paymentStatus = json['paymentStatus']; reservationTimeID = json['reservationTimeID']; reservationBasePrice = json['reservationBasePrice']; refundAmount = json['refundAmount']; refundDate = json['refundDate']; } Map toJson() { final Map data = {}; data['id'] = id; data['adsID'] = adsID; data['customerID'] = customerID; data['paymentStatus'] = paymentStatus; data['reservationTimeID'] = reservationTimeID; data['reservationBasePrice'] = reservationBasePrice; data['refundAmount'] = refundAmount; data['refundDate'] = refundDate; return data; } }