productElementId can be null

This commit is contained in:
Eugene Zadyra
2022-07-04 10:00:14 +02:00
parent f8a6085947
commit 36ada2874b

View File

@@ -17,7 +17,7 @@ package com.lbs.api.json.model
*/
case class Valuation(alternativePrice: Option[String], contractId: Long, isExternalReferralAllowed: Boolean,
isReferralRequired: Boolean, payerId: Long, price: Double, productElementId: Long, productId: Long,
isReferralRequired: Boolean, payerId: Long, price: Double, productElementId: Option[Long], productId: Long,
productInContractId: Long, requireReferralForPP: Boolean, valuationType: Long) {
}