class crmSelectedProductDetailsResponse { ProductsData? productsData; String? error; String? message; crmSelectedProductDetailsResponse({ this.productsData, this.error, this.message, }); crmSelectedProductDetailsResponse.fromJson(Map json) { productsData = json['data'] != null ? ProductsData.fromJson(json['data']) : null; error = json['error']; message = json['message']; } Map toJson() { final Map data = {}; if (productsData != null) { data['data'] = productsData!.toJson(); } data['error'] = error; data['message'] = message; return data; } } class ProductsData { String? id; String? name; String? application; String? rating; String? ratingKw; String? ordStatus; String? description; String? price; String? createdOn; String? empId; String? materialMasterId; String? isGenerator; String? isExists; String? createdDatetime; String? updatedDatetime; ProductsData({ this.id, this.name, this.application, this.rating, this.ratingKw, this.ordStatus, this.description, this.price, this.createdOn, this.empId, this.materialMasterId, this.isGenerator, this.isExists, this.createdDatetime, this.updatedDatetime, }); ProductsData.fromJson(Map json) { id = json['id']; name = json['name']; application = json['application']; rating = json['rating']; ratingKw = json['rating_kw']; ordStatus = json['ord_status']; description = json['description']; price = json['price']; createdOn = json['created_on']; empId = json['emp_id']; materialMasterId = json['material_master_id']; isGenerator = json['is_generator']; isExists = json['is_exists']; createdDatetime = json['created_datetime']; updatedDatetime = json['updated_datetime']; } Map toJson() { final Map data = {}; data['id'] = id; data['name'] = name; data['application'] = application; data['rating'] = rating; data['rating_kw'] = ratingKw; data['ord_status'] = ordStatus; data['description'] = description; data['price'] = price; data['created_on'] = createdOn; data['emp_id'] = empId; data['material_master_id'] = materialMasterId; data['is_generator'] = isGenerator; data['is_exists'] = isExists; data['created_datetime'] = createdDatetime; data['updated_datetime'] = updatedDatetime; return data; } }