class ProductTest {
  int productTestId;
  int customerId;
  int productId;

  DateTime dateView;
  bool purchaseClick;

  ProductTest.fromJson(Map json) {
    this.productTestId = json['productTestId'];
    this.customerId = json['customerId'];
    this.productId = json['productId'];
    this.dateView = json['dateView'];
    this.purchaseClick = json['purchaseClick'];
  }
}